.login-card h2 {
    text-align: center;
    margin-top: 0px;
    font-size: 40px;
}
.login-card input[type="text"] {
    border: 1px solid #919197 !important;
    border-radius: 5px !important;
}
button.btn-login{
    background: #3175b7 !important;
    font-family: 'Jost';
    padding: 12px !important;
    width: 100%;
    border:none;
    color: #fff;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
}
.login-card {
    width: 100% !important;
    max-width: 100%;
    padding: 50px 45px;
    border: 1px solid #BABABC;
    box-shadow: none;
    border-radius: 5px !IMPORTANT;
}
.login-card label.remember input {
    min-width: 16px;
    width: 16px;
    height: 16px;
    border-radius: 0px !important;
}
.login-card label.remember {
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
    gap: 10px;
    font-family: 'Jost';
    font-size: 16px;
    font-weight: 500;
}

.form-group {
    margin-bottom: 14px;
}

.field-error {
    display: block;
    color: #d63638;
    font-size: 13px;
    margin-top: 4px;
}

input.error {
    border-color: #d63638;
}

.remember {
    font-size: 14px;
    margin-bottom: 15px;
}

.btn-login {
    width: 100%;
    padding: 12px;
    background: #2e73b8;
    color: #fff;
    border: 0;
    border-radius: 6px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-loader {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,.6);
    border-top-color: #fff;
    border-radius: 50%;
    display: none;
    animation: spin 0.8s linear infinite;
}

.btn-login.loading {
    pointer-events: none;
    opacity: 0.9;
}

.btn-login.loading .btn-loader {
    display: inline-block;
}

.auth-msg {
    margin-top: 12px;
    font-size: 14px;
}

.auth-msg.success {
    color: #2e7d32;
}

.auth-msg.error {
    color: #d63638;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
