:root {
    --primary-2: #1E3A8A;
    --bs-primary: #2563EB;
    --input-bg-white: #fff;
}

html,
body {
    font-family: "Inter", sans-serif;
    color: #374151;
    font-size: 14px;
    margin: 0;
}

.authContainer {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 16px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F1F5F9 0%, #EFF6FF 35.36%, #E0E7FF 70.71%);
}

.authContainer .formContainer .authCard {
    width: 100%;
    margin: 0 auto;
    max-width: 475px;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.50);
    background: #FFF;
    box-shadow: 0 25px 50px 0 rgba(0, 0, 0, 0.25);
}

.authContainer .formContainer .authCard .welcomeTitle {
    color: #1E293B;
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    margin: 0;
}

.authContainer .formContainer .authCard .titleHelper {
    color: #64748B;
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    margin: 0;
}

.authContainer .form-label {
    color: #334155;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 9px;
    display: block;
}

.authContainer .form-control-group {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 47px;
    background-color: var(--input-bg-white);
    border: 1px solid #CBD5E1;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.authContainer .form-control-group .auth-input-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    width: 44px;
    color: #94A3B8;
    background: #fff;
    border: none;
    padding: 0;
    font-size: 14px;
    line-height: 1;
}

.authContainer .form-control-group input {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    height: auto;
    min-height: 47px;
    margin: 0;
    padding: 0 12px 0 0;
    border: none;
    outline: none;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    line-height: normal;
}

.authContainer .form-control-group input::placeholder {
    color: #94A3B8;
}

.authContainer .form-control-group input:focus {
    outline: none;
    box-shadow: none;
    background: transparent;
}

.authContainer .form-control-group.has-toggle input {
    padding-right: 40px;
}

.authContainer .password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    border: none;
    background: transparent;
    color: #94A3B8;
    cursor: pointer;
    line-height: 1;
}

.authContainer .password-toggle:hover {
    color: #64748B;
}

.authContainer .btn-primary-login {
    background: var(--primary-2);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0 16px;
    min-height: 47px;
    width: 100%;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    box-shadow: none;
}

.authContainer .btn-primary-login:hover {
    background: var(--primary-2);
    color: #fff;
    opacity: 0.9;
}

.authContainer .flex-div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.authContainer .flex-div a {
    color: var(--bs-primary);
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.13px;
    white-space: nowrap;
}

.authContainer .form-check-label {
    font-size: 14px;
    color: #334155;
}

.logoContainer {
    text-align: center;
    margin-bottom: 0;
}

.logoContainer img {
    width: 100%;
    max-width: 70px;
    margin: 0 auto;
    display: block;
}

.mb-32 {
    margin-bottom: 32px !important;
}

.bottomContent {
    margin-top: 32px;
}

.bottomContent p.large {
    color: #475569;
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-top: 0;
    margin-bottom: 16px;
}

.bottomContent p.large span {
    font-weight: 500;
}

.bottomContent p.small,
.bottomContent p.small a {
    color: #64748B;
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
}

.authContainer .form-control {
    min-height: 47px;
    border: 1px solid #CBD5E1;
    border-radius: 6px;
    font-family: Inter, sans-serif;
    font-size: 14px;
    color: #000;
    box-shadow: none;
}

.authContainer .form-control:focus {
    border-color: #CBD5E1;
    box-shadow: none;
}

.authContainer .toggleIcon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #94A3B8;
    line-height: 1;
}
