/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* Fondo general */
body {
    background: linear-gradient(to bottom, #00b4d8, #0077c2);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Contenedor del formulario */
.form-container {
    background: white;
    width: 100%;
    max-width: 450px;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    animation: fadeIn 0.7s ease-in-out;
}

/* Título */
.form-container h1 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 2rem;
    color: #0077c2;
}

/* Etiquetas */
label {
    font-weight: 600;
    color: #0077c2;
    margin-top: 10px;
    display: block;
}

/* Inputs y selects */
input,
select,
textarea {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border-radius: 10px;
    border: 2px solid #cccccc;
    font-size: 1rem;
    transition: 0.3s;
}

/* Efecto al enfocar */
input:focus,
select:focus,
textarea:focus {
    border-color: #00b4d8;
    outline: none;
    box-shadow: 0 0 8px rgba(0,180,216,0.5);
}

/* Botón */
button {
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    background: #0077c2;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
}

/* Hover del botón */
button:hover {
    background: #00b4d8;
    transform: scale(1.05);
}

/* Animación */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

