body {
    font-family: Arial, sans-serif;
    background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url('/media/imagenes/login/bk3.webp'); /* Aquí se inserta la imagen de fondo */
    background-size: cover; /* Asegura que la imagen cubra todo el fondo */
    background-repeat: no-repeat; /* Evita que la imagen se repita */
    background-position: center center; /* Centra la imagen en el fondo */
    background-attachment: fixed; /* Mantiene la imagen fija al hacer scroll */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: #ffeaf9a8; 
    padding: 30px; /* Espaciado interno: 30 píxeles */
    border-radius: 15px; /* Radio del borde: 15 píxeles */
    width: 100%; /* Ancho: 100% */
    max-width: 500px; /* Ancho máximo: 500 píxeles */
    margin: auto; /* Margen automático para centrar */
    box-shadow: 
        0px /* Offset X: posición horizontal de la sombra (0 significa sin desplazamiento horizontal) */
        0px /* Offset Y: posición vertical de la sombra (0 significa sin desplazamiento vertical) */
        20px /* Radio de desenfoque: el efecto de desenfoque (un valor mayor significa más desenfoque) */
        rgba(0, 0, 0, 0.42);
}

.form {
    text-align: center;
}

.logo-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ff1493; /* Agregar borde */
}

.logo-circle img {
    max-width: 100%;
    max-height: 100%;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.column {
    flex: 1;
}

label {
    text-align: left;
    font-weight: bold;
    margin-bottom: 5px;
    color: #ec009b;
}

input, select {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    font-size: 16px;
    box-sizing: border-box;
}

select {
    appearance: none;
    background: url('data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns%3D%27http://www.w3.org/2000/svg%27 width%3D%2716%27 height%3D%2716%27 viewBox%3D%270 0 16 16%27%3E%3Cpath fill%3D%27%23333%27 d%3D%27M5.25 4.75L8 7.5l2.75-2.75a.75.75 0 011.06 1.06l-3.25 3.25a.75.75 0 01-1.06 0L4.19 5.81a.75.75 0 011.06-1.06z%27/%3E%3C/svg%3E') no-repeat right 10px center;
    background-color: white;
    background-size: 12px;
    padding-right: 30px;
}

button {
    padding: 12px;
    background-color: #ff69b4;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #ff1493;
}

/* Estilos para dispositivos móviles */
@media (max-width: 768px) {
    .container {
        padding: 20px; /* Reduce el padding en dispositivos móviles */
    }

    .row {
        flex-direction: column; /* Cambia las filas a columnas en dispositivos móviles */
        gap: 10px; /* Reduce el gap entre elementos en dispositivos móviles */
    }
}
