/* red: #EF3829*/
/* blue: #1F97AE*/
/* black: #222222*/

@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto.woff2") format("woff2"),
       url("../fonts/roboto.woff") format("woff");
  font-weight: 400;
}

@font-face {
  font-family: "Roboto Medium";
  src: url("../fonts/roboto-500.woff2") format("woff2"),
       url("../fonts/roboto-500.woff") format("woff");
  font-weight: 700;
}

@font-face {
  font-family: "Roboto Light";
  src: url("../fonts/roboto-300.woff2") format("woff2"),
       url("../fonts/roboto-300.woff") format("woff");
  font-weight: 300;
}

* {
    box-sizing: border-box;
}

.claro-body {
    background: #F2F2F2;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    color: #222222
}

.claro-main-page{
    min-height: calc(100vh - 7.875em); /*9.75em = header + footer*/
    display: flex;
    flex-direction: column;
    padding: 0 0.75em;
}

.claro-title #kc-page-title{
    margin-bottom: 1.125rem;
}

.claro-title h1 {
    font-size: 1.15em;
    color: #222222;
    text-align: center;
    margin:0 0 1em 0;
    font-family: "Roboto Light", sans-serif;
    font-weight: 300;
}
.claro-title h1 strong{
    font-family: "Roboto Medium", sans-serif;
    font-weight: 500;
}

a {
    color: #1F97AE;
    text-decoration: none;
}

.display-none{
    display: none;
}

.alert{
    display: flex;
    align-items: flex-start;
    padding: 1em;
    margin-bottom: 1em;
    color:#222222;
    border-radius: 5px;
}

.alert .kc-feedback-text{
    font-size: 0.85rem;
}

.alert__container{
    width: 100%;
    max-width: 736px;
    margin: auto;
    display: flex;
}
.alert .alert__icon{
    margin-right: 10px;
}

.alert .alert__icon img{
    width: 1rem;
}

.alert.alert-error{
    background-color: #F2DEDE;
}

.anotherWay{
    display: flex;
    margin: 0 2em 2em;
    justify-content: center;
}

.claro-logo {
    height: 2.5rem;
}

.title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
}

.claro-title {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.claro-title h1 {
    font-size: 1em;
    color: #222222;
    text-align: center;
}

.back-button{
    margin-top: 2rem;
}

/* Web Authn */
.webauthn-registration-buttons {
    display: flex;
    gap: 1em;
    justify-content: center;
    margin-top: 30px;
}

.security-key-login-info {
	margin: 0 1em 1em;
    font-size: 12px;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(217, 217, 217);
    border-radius: 3px;
    box-shadow: rgb(0 0 0 / 10%) 0px 1px 2px 0px;
    display: inline-block;
    vertical-align: top;
    width: 290px;
    margin: -3em 1em 2em;
}

.security-key-login-info-section {
    display: flex;
    align-items: center;
}

.security-key-login-info-container {
    margin: 8px;
}

/* Alerts Errors */
.alert {
    display: flex;
    padding: 1em;
    margin-bottom: 1em;
    color: #222222;
    border-radius: 5px;
    align-items: flex-end;
}

.alert .kc-feedback-text {
    font-size: 0.85rem;
}

.alert .alert__icon {
    margin-right: 10px;
    display: flex;
}

.alert .alert__icon img {
    width: 1rem;
}

.alert.alert-success {
    background-color: #E4F1E1;
    border-color: #4B9E39;
}

.alert.alert-error {
    background-color: #f2dede;
    border: solid 2px #B91415;
    box-shadow: 0 2px 4px;
}