@media screen and (max-width: 768px) {
    .hide-div-auth {
        visibility: hidden;
        display: none;
    }
    .show-div-auth {
        visibility: visible;
        display: block;
    }
    
    /* Mobile Layout & Typography Optimizations */
    .auth-wrapper-form-container {
        padding: 16px !important;
    }
    .auth-logo-container {
        margin-bottom: 24px !important;
    }
    .auth-logo-container img {
        max-height: 56px !important;
        margin-bottom: 16px !important;
    }
    .auth-logo-container h2.title {
        font-size: 22px !important;
    }
    .card-auth .card-body {
        padding: 24px 20px !important;
    }
    .auth-header {
        margin-bottom: 20px !important;
    }
    .auth-header h1.title {
        font-size: 24px !important;
    }
    .js-form-message {
        margin-bottom: 16px !important;
    }
    .btn-login {
        margin-top: 16px !important;
    }
}
@media screen and (min-width: 768px) {
    .show-div-auth {
        visibility: hidden;
        display: none;
    }
}

.bg-one-auth {
    background-color: #f0fdf4;
}
.h-one-auth {
    font-size: 50px;
    margin-top: 30px;
}
.h-two-auth {
    font-size: 20px;
}
.div-one-auth {
    border-inline-end: 2px solid rgb(85, 84, 84);
}
.h-three-auth {
    font-size: 50px;
    margin-top: 30px;
}
.h-four-auth {
    font-size: 20px;
}

.software_version {
    z-index: 9;
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
}
.auth-wrapper {
    background-color: #f0fdf4;
    background-image: radial-gradient(circle at top right, #dcfce7, transparent 400px), radial-gradient(circle at bottom left, #ecfdf5, transparent 400px);
}

.auth-wrapper-form-container {
    animation: fadeUp 0.6s ease-out;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.card-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.auth-logo-container img {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
    transition: transform 0.3s ease;
}

.auth-logo-container img:hover {
    transform: scale(1.02);
}

.btn-login {
    transition: all 0.2s ease;
}

.btn-login:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.form-control {
    border-color: var(--border-color);
    background-color: var(--bg-main);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-control:focus {
    background-color: var(--bg-surface);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
}

.input-label {
    font-weight: var(--fw-semibold);
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 8px;
    display: inline-block;
}

.card-auth {
    background: var(--bg-surface);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
}
.text--039D55 {
    color: #161853 !important;
}
@media (min-width: 1650px) {
    .vendor-login .auth-wrapper-right .auth-header {
        font-size: 20px;
    }
    .vendor-login .auth-wrapper-right .auth-header .title {
        font-size: 36px;
    }
}
.toggle-login {
    text-align: center;
    margin-top: 15px;
}
.toggle-login .toggle-login-btn {
    cursor: pointer;
    color: #161853;
}
a:hover .text--title {
    color: var(--primary-clr) !important;
}
.object-cover {
    -o-object-fit: cover;
    object-fit: cover;
}
.min-h-90px {
    min-height: 100px !important;
}
.__login-badge {
    position: absolute;
    inset-inline-end: 25px;
    top: 25px;
}

.color-EC255A {
    color: #EC255A !important;
}
