/* General */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f7f8fa;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Contenedor de registro */
.registro-container {
    background-color: #ffffff;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.registro-container h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

/* Formulario */
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

form input, form select, form button {
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}

form input[type="text"], form input[type="email"], form input[type="password"], form select {
    margin-bottom: 1rem; /* Espacio entre campos */
}

/* Estilo de los botones */
form button {
    background-color: #1abc9c;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

form button:hover {
    background-color: #16a085;
}

/* Enlace */
p {
    margin-top: 1rem;
}

p a {
    color: #1abc9c;
    text-decoration: none;
}

p a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (min-width: 600px) {
    .registro-container {
        max-width: 450px;
    }
}
