body {
    background:
        linear-gradient(rgba(0, 210, 200, 0.35),
            rgba(0, 210, 200, 0.35)),
        url('/v2/user/assets/media/auth-bg-img.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'Metropolis', sans-serif !important;
    line-height: 1.5;
}

[data-bs-theme="dark"] body {
    background-color: rgba(0, 210, 200, 0.15);
    background-image: url('/v2/user/assets/media/auth-bg-img.jpg');
}

.login-glass {
    background: rgba(255, 255, 255, 0.55) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

#kt_app_root {
    /* padding: 30px 80px; */
    padding: 30px 30px;
}

.logo {
    /* padding-top: 100px; */
    padding-top: 70px;
}

.sign-in-title {
    color: #3F4254 !important;
}

.fw-500 {
    font-weight: 500;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 44px;
    padding: 0 18px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: all 0.2s ease;
}

.social-btn img {
    width: 22px;
    height: 22px;
}

.social-btn:hover {
    border-color: #d1d5db;
    background: #f9fafb;
}

.social-btn span {
    flex: 1;
    text-align: center;
}

.enter-registered-email {
    color: #0B122080;
}

.social-btn-text {
    color: #A0A8AC !important;
    font-weight: 500;
    font-size: 14px !important;
}

.email-with {
    color: #0B122080 !important;
    font-weight: 600 !important;
}

.google-icon {
    position: relative;
    top: 2px;
}

.email-input-icon {
    padding-left: 10px;
    padding-right: 0px;
}

.email-input,
.email-input:focus,
.email-input:-webkit-autofill .password-input,
.password-input:focus,
.password-input:-webkit-autofill {
    background-color: transparent !important;
    border-radius: 30px;
}


input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
    -webkit-text-fill-color: #000 !important;
    transition: background-color 5000s ease-in-out 0s !important;
}

@keyframes autofill {
    to {
        -webkit-box-shadow: 0 0 0px 1000px white inset !important;
        -webkit-text-fill-color: #000 !important;
    }
}

input:-webkit-autofill {
    animation-name: autofill;
    animation-fill-mode: both;
}


.email-input::placeholder,
.password-input::placeholder {
    color: #A0A8AC !important;
    position: relative;
    top: 1px;
}

.sign-in-btn {
    background-color: #00D2C8 !important;
    border: 1px solid #00D2C8 !important;
    border-radius: 50px !important;
    color: #FFFFFF !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    padding: 12px 0px !important;
}

.dont-have-account,
.resend-otp {
    color: #0B122080 !important;
}

.signup-link,
.register-link {
    color: #2563EB;
    font-weight: 600;
}

.app-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.footer-links {
    /* margin-top: 60px; */
    margin-top: 100px;
    margin-bottom: 20px;
}

.alert-success {
    /* background-color: rgba(0, 210, 200, 0.1) !important;  0.2 = 20% opacity
    border: 1px solid rgba(0, 210, 200, 0.5) !important; */
    background-color: #00D2C8 !important;  /* 0.2 = 20% opacity */
    border: 1px solid #00D2C8 !important;
    color: white;
    font-weight: 500;
}

.alert-success .btn-close {
    filter: invert(1);
    opacity: 1;
}