@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Regular.ttf") format("truetype");
    font-display: swap;
}

:root {
    --pf-global--primary-color--100: #022050;
    --pf-global--primary-color--200: #022050;
    --pf-global--BorderColor--300: #022050;
    --lti-global--anchor-color: #0094FF;
}

body {   
    font-family: 'Poppins' !important;
}

a {
    color: #383838;
    text-decoration: none;
}

a:hover {
    color: var(--lti-global--anchor-color);
    text-decoration: none;
}

/* Main box for login */
.card-pf {
    border-top: 0px;
    border-radius: 10pt;   
}

/* input boxes*/
input[name="username"].pf-c-form-control, input[name="password"].pf-c-form-control, 
input[name="password-new"].pf-c-form-control, input[name="password-confirm"].pf-c-form-control {
   font-family: 'Poppins' !important;
    font-size: 14pt;
}
.pf-c-button.pf-m-primary {
    border-radius: 2em;
    height: 50px;
    max-width: 462px;
    font-size: 14pt;
}

.error {
    color: #cc0000;
    font-size: 11pt;
}
/* Vertical spacing on primary buttons */
#kc-login, #updatePWAppInitBtn, #updatePWActionBtn, #resetPWBtn {
    padding-top: 12px;
}

#kc-registration a {
    color: var(--lti-global--anchor-color);
    text-decoration: underline;
}

#footer-service-text {
    text-align: center;
    font-size: 10pt; 
}

#footer-service-text a {
    color: var(--lti-global--anchor-color);
    text-decoration: underline;
}

#footer-service-text a:hover {
    color: var(--lti-global--anchor-color);
    text-decoration: underline;
}

#forgotpw-message {
    font-size: 11pt;
    margin-top: -1em;
    display: block;
}

#header-title-logo {
    text-align: center;
}

#header-title-text {
    text-align: center;    
    margin-top: 0.3em;
}

#header-title-line-1 {
    font-size: 26pt;
    font-weight: 600;   
}

#header-title-line-2 {
    font-size: 14pt;   
}
/* #subtemplate-title-line-1 {
    font-size: 26pt;
    font-weight: 600;   
}

#subtemplate-title-line-2 {
    font-size: 14pt;   
} */

#kc-form-options>div>span {
    font-size: 11pt;
    margin-top: -1em;
    display: block;
}


/* Forgot Password */
label[for="username"] {
    font-size: 14pt;
}

label[for="password"] {
    font-size: 14pt;
}

#password {
    border-radius: 2em;
    height: 50px;
    max-width: 462px;
    padding-left: 28px;
}

#username {
    border-radius: 2em;
    height: 50px;
    max-width: 462px;
    padding-left: 28px;
}

#kc-info-message {
    font-size: 11pt;
}

#kc-info-wrapper {
    font-size: 11pt;
    background-color: #FFFFFF;
    color: #545454;
}

#kc-reset-password-form {
    margin-top: 1em;
   }

/* Password Update */
label[for="password-new"] {
    font-size: 14pt;
}

#updatePWRequirementsDescription {
    font-size: 11pt;
    margin-top: 1em;
    display: block;
}

label[for="password-confirm"] {
    font-size: 14pt;
}

#password-new {
    border-radius: 2em;
    height: 50px;
    max-width: 462px;
    padding-left: 28px;
}

#password-confirm {
    border-radius: 2em;
    height: 50px;
    max-width: 462px;
    padding-left: 28px;
}

#kc-passwd-update-form {
    margin-top: 1em;
}
   
/* Error message for error.ftl */
#kc-info-message, #kc-error-message {
    text-align: center;
}

/* Instruction message on login-verify-email.ftl */
p.instruction {
    font-size: 11pt;
    text-align:center;
}

/* UX error messaging for login-reset-password.ftl / login-update-password.ftl */
 
 #password-new.error, #password-confirm.error {
    color: #cc0000;
    border-color: #cc0000;   
 }
 
 #passNewError {
   color: #cc0000;
   font-size: 11pt;
   position: relative;
   display: none;
 }
 
 #passConfirmError {
   color: #cc0000;
   font-size: 11pt;
   position: relative;
   display: none;
 }
 
 #passNewError.error, #passConfirmError.error {
   display: block;
 }