body * {
    font-family: 'Roboto', sans-serif;
    color: #424266;
}

a:hover {
    text-decoration: none;
    color: #3d3d42;
}

textarea:focus, input:focus {
    outline: none;
}

.input-area {
    border: 1px solid #424266;
    width: 100%;
    border-radius: 6px;
    height: 53px;
    margin: 0 auto;
}

.input-icon {
    width: 27px;
    height: 27px;
    margin-left: 12px;
    margin-right: 4px;
    position: relative;
    top: -1px;
}

.password-input-area {
    margin-top: 20px;
    font-size: 19px;
    display: none;
}

.input-area input {
    border: none;
    height: 44px;
    margin-top: 4px;
    width: 82%;
    font-size: 15px;
    color: #424266;
    padding-left: 7px;
}

.input-area input::placeholder {
    font-size: 15px;
    color: rgba(66, 66, 102, 0.6);
    opacity: .87;
    padding-left: 3px;
}

.sub-section {
    padding: 0px 1.5px;
    margin-top: 18px;
    margin-bottom: 18px;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    color: #424266;
    font-family: 'Roboto', sans-serif;
}

.checkbox-wrapper {
    height: 21px;
    margin-top: 1px;
}

.checkbox-wrapper:hover,
.checkbox-wrapper input:hover,
.checkbox-wrapper span:hover {
    cursor: pointer;
}

.checkbox-wrapper span {
    padding-left: 2px;
}

.checkbox-wrapper input {
    position: relative;
    top: 0.8px;
    background: #C4C4C4;
    width: 13px;
    height: 13px;
    border-radius: 2px;
}

.resend-login-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
}

.resend-login-container button {
    outline: none;
    border: none;
    text-align: center;
    font-size: 15px;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    width: 100%;
    margin: 0 auto;
}

#resend-2fa-btn {
    height: 38px;
    border: 1px solid #424266;
    border-radius: 6px;
    background-color: #f9f9f9;
    color: #424266;
    text-align: center;
    font-size: 15px;
    cursor: not-allowed;
}

#resend-2fa-btn:enabled {
    background-color: #ffffff;
    cursor: pointer;
}

.resend-btn-wrapper {
    width: 100%;
    margin: 0 auto;
}

.auth-btn-container button,
.auth-btn-container a {
    outline: none;
    border: none;
    text-align: center;
    font-size: 15px;
    border-radius: 5px;
    padding: 8px 10px;
    cursor: pointer;
}

.auth-btn-container,
.signup-btn-container {
    display: flex;
}

.auth-btn-container #login_btn_submit_container {
    flex: 2 1 auto;
}

.auth-btn-container #submit-btn {
    background: #424266;
    color: #fff;
    width: 100%;
}

.auth-btn-container #back-btn {
    color: white;
    background: #424266;
    opacity: 0.56;
    display: none;
    flex: 1 1 auto;
    margin-right: 3px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

@keyframes login-v2-autofill-start {
    from, to { background-color: transparent; }
}

@keyframes onAutoFillStart {
    from, to { opacity: 1; }
}

.footer {
    text-align: center;
    position: absolute;
    bottom: 20px;
    width: 100%;
    font-size: 14px;
    color: #424266;
    opacity: .50;
}

.content-section {
    animation: login-intro-animation 1s;
}

.forgot-wrapper .content-section {
    animation: none;
}

.reset-password-wrapper .password-input-area,
.tf-wrapper .password-input-area {
    display: block;
}

.tf-wrapper .password-input-area input {
    font-size: 13px;
}

.tf-wrapper .password-input-area input::placeholder {
    font-size: 13px;
}

@keyframes login-intro-animation {
    0%   { opacity: 0; right: -450px; }
    100% { opacity: 1; right: 0px; }
}

.loader {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: relative;
    vertical-align: middle;
    margin: 0 auto;
    margin-top: 30px;
    display: none;
    opacity: 0.5;
}

.loader,
.loader:before,
.loader:after {
    animation: 1s infinite ease-in-out;
}

.loader:before,
.loader:after {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.custom-loader:before,
.custom-loader:after {
    content: '';
}

.custom-loader:before {
    border: 1px solid #424265;
    opacity: 0;
    animation-name: loader2-1;
}

@keyframes loader2-1 {
    0%   { transform: scale(1);   opacity: 1; }
    50%  { transform: scale(1.3); opacity: 0; }
    100% { transform: scale(1.3); opacity: 0; }
}

.custom-loader:after {
    background-color: #424265;
    animation-name: loader-animation;
}

@keyframes loader-animation {
    0%   { transform: scale(1);   }
    50%  { transform: scale(0.7); }
    100% { transform: scale(1);   }
}

.redirect-section {
    text-align: center;
    margin-top: 75%;
    font-size: 17px;
    display: none;
}

.swal2-content {
    font-family: 'Roboto', sans-serif !important;
    font-size: 15px !important;
}

.grecaptcha-badge {
    display: none;
}
