.login-wrapper {
    height: 100vh;
    background: url('https://storage.googleapis.com/mexmobil_bucket/Recursos/FondoWeb.png') no-repeat center center;
    background-size: cover;
    position: relative;
}


/*MÓVIL */

@media (max-width: 768px) {
    .login-wrapper {
        background: url('https://storage.googleapis.com/mexmobil_bucket/Recursos/FondoMovil.png') no-repeat center center;
        background-size: cover;
    }
}


/* 🔥 Overlay oscuro para que el login resalte */

.login-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}


/* Asegurar que el contenido quede arriba del overlay */

.login-wrapper>.container {
    position: relative;
    z-index: 2;
}


/* Glass card */

.glass-card {
    position: relative;
    background: rgba(1, 6, 14, 0.677);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    border: none;
}

.glass-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 20px;
    background: linear-gradient( 90deg, #029CE8 0%, #029CE8 50%, #E67322 50%, #E67322 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.glass-card:hover::before {
    background: linear-gradient( 90deg, #3ECBFF 0%, /* azul más brillante */
    #3ECBFF 50%, #FF9A4D 50%, /* naranja más brillante */
    #FF9A4D 100%);
    filter: brightness(1.2);
}


/* Inputs */

.glass-input {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.glass-input:focus {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: none;
    color: white;
}

.btn-form {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.btn-form button {
    position: relative;
    padding: 10px 30px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    color: white;
    font-weight: 600;
    letter-spacing: .5px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    overflow: hidden;
}


/* 🔥 borde degradado igual que cards */

.btn-form button::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 25px;
    background: linear-gradient( 90deg, #029CE8 0%, #029CE8 50%, #E67322 50%, #E67322 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}


/* hover tipo cards */

.btn-form button:hover {
    transform: translateY(-5px) scale(1.03);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.info {
    font-size: 0.8rem;
}


/* 🔥 INPUT GLASS STYLE */

.input-group .form-control,
.input-group .form-select,
.input-group textarea {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border-radius: 10px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    border: 1px solid #63ABD5;
}

.input-group-text {
    background-color: #000;
    color: #63ABD5;
    border: 1px solid #63ABD5;
}


/* placeholder */

.form-floating>label {
    color: white !important;
}

.form-floating>label::after {
    background: transparent !important;
}

.toggle-password {
    color: #63ABD5;
}