﻿/* --------------------------------------------------------------------------
   Login
   -------------------------------------------------------------------------- */
.text-login h5 {
    color: var(--brand-primary);
    font-family: var(--primary-font-family);
    font-size: 39px;
    font-style: normal;
    font-weight: 700;
    line-height: 45px;
    /* 115.385% */
    letter-spacing: -2px;
}

.password-toggle {
    position: absolute;
    right: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px 8px;
    color: #999;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.remember-me {
    width: 1.25rem;
    height: 1.25rem;
}

.btn_login {
    font-family: var(--primary-font-family);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    width: 100%;
    border: none;
    color: #ffffff;
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    background: var(--brand-primary);
}

.row-input input {
    flex: 1;
    padding: 13px;
    background: #F4F3F3;
    border: 1px solid #F4F3F3;
    border-radius: 8px;
    font-size: 14.6px;
    transition: all 0.2s ease-out;
    font-family: var(--primary-font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: #777778;
}

    .row-input input.input-validation-error {
        border-color: red;
    }
/* Login Button Spinner Styles */
.login-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}