/* Fondo base por si la imagen no carga */
body {
    background: #006ab8;
    margin: 0;
    padding: 0;
}

.login-wrapper {
    min-height: 100vh;
    display: flex;
    position: relative;
    width: 100%;
    align-items: center;
    /* Por defecto centrado (móvil), en escritorio a la derecha */
    justify-content: center; 
}

@media (min-width: 1024px) {
    .login-wrapper {
        justify-content: flex-end;
        padding-right: 8%; /* Espaciado desde la derecha en PC */
    }
}

.background-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pictures/creciendo.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.form-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 400px; /* Ancho máximo del formulario */
    margin: 20px;
    animation: fadeInScale 0.6s ease-out;
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.logo-circle {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.form-input {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid transparent;
    transition: all 0.2s;
    color: #1a202c;
}

.form-input:focus {
    background: #ffffff;
    border-color: #006ab8;
    ring: 2px;
    ring-color: rgba(0, 106, 184, 0.2);
}

/* Estilo para los labels en el glassmorphism */
.form-label {
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
