#video-background {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    
    transform: translate(-50%, -50%);
    
    object-fit: cover; 
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

/* 3. Center the content */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-control:focus {
    background: rgba(0, 0, 0, 0.6);
    border-color: #0d6efd; /* Bootstrap Primary Blue */
    box-shadow: 0 0 10px rgba(13, 110, 253, 0.5);
}

.login-logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.card {
    background: rgba(5, 5, 5, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 32px 0 rgba(83, 83, 83, 0.7);
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.forgot-password-link {
    display: block;
    max-width: 120px; 
    line-height: 1.2;
    transition: all 0.3s ease;
}

@media (min-width: 400px) {
    .forgot-password-link {
        max-width: none; 
    }
}

.forgot-password-link small {
    display: block;
    text-align: right;
}

#btn-login:disabled {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
    filter: grayscale(1);
}

.recaptcha-wrapper {
    width: 300px;
    height: 74px;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid #333;
}

.recaptcha-wrapper iframe {
    margin: -1px 0 0 -1px;
}

#phoneInput, 
input[type="password"].form-control {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    letter-spacing: 5px;
    
    background-color: #121212;
    color: #ffffff;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 12px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#phoneInput::placeholder,
input[type="password"]::placeholder {
    letter-spacing: 5px;
    font-size: 1.6rem;
    opacity: 0.5;
}

#phoneInput:focus, 
input[type="password"]:focus {
    border-color: #0dcaf0;
    box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.25);
    outline: none;
}

.btn-primary, 
button[type="submit"] {
    background-color: #3b71ed !important;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s ease;
    color: white;
}

.btn-primary:hover, 
button[type="submit"]:hover {
    background-color: #2a5bd7 !important;
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
    filter: brightness(0.9);
}

/*a, */
.text-info, 
.forgot-password-link {
    color: #0dcaf0 !important;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
    margin-bottom: 0;
}

a:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

.btn-whatsapp/*, 
[href*="wa.me"], 
[href*="whatsapp"]*/ {
    border: 1px solid #198754 !important;
    color: #198754 !important;
    background: transparent;
    border-radius: 8px;
    padding: 8px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-outline-success:hover {
    background-color: rgba(25, 135, 84, 0.1) !important;
}

.font-normal {
    text-align: left !important;
    font-size: 1.1rem !important;
    letter-spacing: 0px !important;
}

#verificationCode {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 8px;
    background-color: #121212 !important;
    border: 1px solid #444;
    max-width: 240px;
    margin: 0 auto;
}

#verificationCode::placeholder {
    letter-spacing: 8px;
    font-size: 2rem;
    opacity: 0.3;
}
