.desktop-login,footer {
    display: block;
}

.mobile-login,.mobile-login-footer {
    display: none;
}

@media screen and (max-width: 768px) {
    
    .desktop-login,footer {
    display: none;
}
.hide-on-mobile {
        display: none;
    }

.mobile-login,.mobile-login-footer {
    display: flex;
}
.bg-white{
   --bs-bg-opacity: none !important;
}

    /* Full-screen background */
    body {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        background: url('/assets/images/bg-mobile-min.jpeg') center/cover no-repeat;
        font-family: 'Arial', sans-serif;
        padding: 20px;
        flex-direction: column;
    }

       /* Login Container */
    .mobile-login.login-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 400px;
    }

    /* Glassmorphism Effect */
    .mobile-login .login-form {
        background: white;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 30px;
        border-radius: 18px;
        box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2);
        text-align: center;
        width: 100%;
        max-width: 400px;
    }

    /* Logo */
    .mobile-login .logo {
        width: 150px;
        margin-bottom: 15px;
    }

    /* Headings */
    .mobile-login h2 {
        font-family: 'Amazon Ember', sans-serif;
        font-weight: 500;
        font-size: 24px;
        line-height: 36px;
        text-align: center;
        color: #1F2A37;
    }

    .mobile-login p {
        font-family: 'Amazon Ember', sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        text-align: center;
        color: #6B7280;
    }

    /* Labels */
    .mobile-login label {
        display: block;
        text-align: left;
        font-size: 14px;
        color: #344054;
        /*margin-top: 15px;*/
        font-weight: 500;
    }

    /* Input Fields */
    .mobile-login .input-container {
        position: relative;
    }

    .mobile-login input {
        width: 100%;
        padding: 12px;
        border-radius: 8px;
        border: 1px solid #c9c3c380;
        background: #ffffff;
        font-size: 14px;
        color: #333;
        margin-bottom: 10px;
    }

    /* Sign in with Phone */
    .mobile-login .phone-login,.mobile-login .forgot-password {
        display: block;
        text-align: right;
       font-size: 14px;
        color: #2874F0;
        text-decoration: none;
        /*margin-bottom: 15px;*/
    }

    /* Password Eye Icon */
    .mobile-login .toggle-password {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        color: #666;
    }

    /* Remember me & Forgot Password */
    .mobile-login .remember-me-container {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: 10px;
    }

    .mobile-login .remember-me-container input[type="checkbox"] {
        width: 16px;
        height: 16px;
        accent-color: #2874F0;
    }

    .mobile-login .remember-me-container label {
        font-family: 'Amazon Ember', sans-serif;
        font-size: 14px;
        font-weight: 400;
        color: #344054;
        cursor: pointer;
    }

    /* Login Button */
    .mobile-login .login-btn {
        width: 100%;
        padding: 12px;
        background-color: #007BFF;
        color: white;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        font-size: 16px;
        margin-top: 15px;
    }

    .mobile-login .login-btn:hover {
        background-color: #0056b3;
    }

    /* Register Link */
    .mobile-login .register-text {
        font-size: 12px;
        color: #6B7280;
        margin-top: 15px;
    }

    .mobile-login .register-text a {
        color: #007BFF;
        text-decoration: none;
    }
    .phone-icon {
        width: 16px; /* Adjust size */
        height: 16px;
        margin-right: 5px; /* Space between icon and text */
        object-fit: contain; /* Ensures the image scales properly */
        vertical-align: middle; /* Aligns with text */
    }

   
    input#remember {
    margin-bottom: 0px;
}

.mobile-login-footer.footer-container {
    box-sizing: border-box;

    /* Positioning at the bottom */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%; /* Full width */

    /* Layout */
    display: flex;
    align-items: center;
    justify-content: space-between; /* Ensures left & right alignment */

    /* Dimensions */
    height: 52px;
    padding: 0 24px; /* Adds spacing on left & right */

    /* Background & Blur */
    background: rgba(245, 245, 245, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    /* Inside Auto Layout */
    z-index: 1000;
    border-radius: 0;
}

.mobile-login-footer .footer-content {
    display: flex;
    justify-content: space-between; /* Left & right alignment */
    width: 100%;
    max-width: 1200px; /* Prevents stretching on large screens */
    font-size: 14px;
    font-weight: 500;
    color: #111928;
}

.mobile-login-footer .footer-contact {
    display: flex;
    align-items: center;
    gap: 5px;
}

.mobile-login-footer .footer-contact i {
    color: #1F2937;
    font-size: 16px;
}

.mobile-login-footer .email-icon {
    width: 16px; /* Adjust icon size */
    height: 16px;
    object-fit: contain; /* Ensures the image scales properly */
}



}
