/* Estilo para el fondo con degradado */
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #FFB6C1, #FFFFFF);
    font-family: 'Arial', sans-serif;
}

/* Panel de login */
.login-panel {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: scale(0.8);
    opacity: 0;
    animation: fadeIn 1s forwards;
}

/* Estilo para inputs */
.login-panel input[type="text"],
.login-panel input[type="password"],
.login-panel input[type="email"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

/* Estilo para selectores */
.login-panel select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    background-color: #fff;
}

/* Estilo para selectores múltiples */
.login-panel select[multiple] {
    height: 100px;
    overflow: auto;
}

/* Botón de registro */
.login-panel button {
    width: 100%;
    padding: 10px;
    background-color: #3498db;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-panel button:hover {
    background-color: #2980b9;
}

/* Estilo para inputs */
.login-panel input[type="text"],
.login-panel input[type="password"],
.login-panel input[type="email"],
.login-panel select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}



/* Animaciones */
@keyframes fadeIn {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

