.auth-status {
    display: none;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    z-index: 9999;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateX(-50%) translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

/* Login Container Responsive */
/* .login-outer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
} */

/* .login-wrapper {
    flex: 1;
    max-width: 480px;
    padding-right: 40px;
} */

/* .login-logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
} */

/* .login-logo img {
    max-width: 100%;
    height: auto;
} */

/* .input-wrapper {
    margin-bottom: 30px;
} */

/* .phone-wrapper,
.password-wrapper {
    position: relative;
    margin-bottom: 25px;
} */

/* Input Labels */
/* .phone-wrapper label,
.password-wrapper label {
    position: absolute;
    left: 15px;
    top: 5px;
    font-size: 13px;
    color: #666;
    background: white;
    padding: 0 5px;
    border-radius: 4px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
} */

.phone-wrapper.focused label,
.password-wrapper.focused label,
.phone-wrapper input:not(:placeholder-shown)+label,
.password-wrapper input:not(:placeholder-shown)+label {
    color: #007bff;
    font-weight: 600;
    /* transform: translateY(-5px); */
}

/* Input Fields */
.phone-wrapper input,
.password-wrapper input {
    border-radius: 10px;
    font-size: 15px;
    line-height: 1.2;
    transition: all 0.3s ease;
    background: white;
}

.phone-wrapper input:focus,
.password-wrapper input:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.phone-wrapper input::placeholder,
.password-wrapper input::placeholder {
    color: #aaa;
    font-size: 14px;
}

/* Input icons */
/* .phone-wrapper::after,
.password-wrapper::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.phone-wrapper::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23666"><path d="M20 15.5c-1.2 0-2.4-.2-3.6-.6-.3-.1-.7 0-1 .2l-2.2 2.2c-2.8-1.4-5.1-3.8-6.6-6.6l2.2-2.2c.3-.3.4-.7.2-1-.3-1.1-.5-2.3-.5-3.5 0-.6-.4-1-1-1H4c-.6 0-1 .4-1 1 0 9.4 7.6 17 17 17 .6 0 1-.4 1-1v-3.5c0-.6-.4-1-1-1zM19 12h2c0-4.4-3.6-8-8-8v2c3.3 0 6 2.7 6 6zm-4 0h2c0-2.2-1.8-4-4-4v2c1.1 0 2 .9 2 2z"/></svg>');
}

.password-wrapper::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23666"><path d="M18 8h-1V6c0-2.8-2.2-5-5-5S7 3.2 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM9 8V6c0-1.7 1.3-3 3-3s3 1.3 3 3v2H9z"/></svg>');
}

.phone-wrapper.focused::after,
.password-wrapper.focused::after {
    opacity: 1;
} */

/* Login Button Styling */
/* .login-button {
    position: relative;
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #0061f2 0%, #007bff 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
} */

.login-button:hover {
    /* transform: translateY(-2px); */
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.login-button:active {
    transform: translateY(0);
}

.login-button:disabled {
    background: linear-gradient(135deg, #ccc 0%, #999 100%);
    transform: none;
    box-shadow: none;
    cursor: not-allowed;
}

.login-button .button-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.login-button .button-text {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Fixed loader display issue */
.loader {
    display: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Fixed forgot password link */
/* .forgot-password-wrapper {
    text-align: right;
    margin-top: 10px;
}

.forgot-password {
    display: inline-block;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 5px;
} */

.forgot-password:hover {
    color: #007bff;
    text-decoration: underline;
}

/* Enhanced Mobile Responsive */
@media (max-width: 991px) {
    /* .login-outer-container {
        padding: 15px;
    }

    .login-wrapper {
        max-width: 100%;
    } */
}

@media (max-width: 768px) {
    /* .login-bg {
        min-height: auto;
        padding: 40px 0;
    } */

    /* .login-outer-container {
        flex-direction: column;
        gap: 40px;
    } */

    /* .title-wrapper {
        text-align: center;
    } */

    /* .title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .description {
        font-size: 14px;
    }

    .login-logo {
        order: -1;
        margin-bottom: 20px;
    }

    .login-logo img {
        max-width: 200px;
    } */
}

@media (max-width: 480px) {
    /* .login-bg {
        padding: 20px 0;
    }

    .login-outer-container {
        padding: 15px;
    } */
    /* 
    .phone-wrapper input,
    .password-wrapper input {
        font-size: 14px;
        padding: 20px 15px 10px;
    } */

    /* .login-button {
        padding: 14px;
    }

    .login-button .button-text {
        font-size: 14px;
    } */
}