* {
    font-family: Inter;
    font-size: 15px;
    font-weight: 400;
    color: #312B2B;

}

html {
    height: 100%;
    width: 100%;
  }

body {
    min-height: 100svh;
    background: linear-gradient(213.63deg, #054289 6.24%, #011C56 108.94%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 24px;
    background-color: white;
    width: 418px;
    margin: auto;
    margin-top: 0px;
    padding: 32px;
}

.logo {
    margin: auto;
    width: 322px;
    height: 38px;
    margin-bottom: 38px;
}

@media screen and (max-width: 400px){
    .logo {
        width: 280px;
        height: 33px;
        margin-bottom: 33px;
    }
    main {
        width: 364px;
    }
}

@media screen and (max-width: 320px){
    .logo {
        width: 250px;
        height: 30px;
        margin-bottom: 30px;
    }
    main {
        width: 315px;
    }
}

h1, .h1{
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: -0.03em;
    text-align: center;
}

h2, .h2{
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    letter-spacing: -0.03em;
    text-align: center;
}

h3, .h3{
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.03em;
    text-align: center;
}


.btn-focus {
    padding: 1em;
    font-family: Inter;
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.02em;
    border-radius: 12px;
    border-style: none;
    color: #FFF;
    background-color: #054289;   
}

.btn-focus:active{
    background-color: #1B589F;
}

.btn-focus:pressed{
    background-color: #073569;
}

.btn-nofocus {
    padding: 1em;
    font-family: Inter;
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.02em;
    border-radius: 12px;
    color: #054289;   
    background-color: #FFF;
    border-style: solid;
    border-width: 1.2px;
}

.btn-nofocus:active{
    color: #1B589F;
}

.btn-nofocus:pressed{
    color: #073569;
}

.brand-logo {
  width: 1.5em;
  height: auto;
  margin: 0.5em;
}

.brand-header {
  display: flex;
  text-decoration: none; 
  align-items: center;
  color: inherit;
}

.offcanvas-body{
  display: flex;
  flex-direction: column;
}

.messages-notification{
    position: fixed;
    bottom: 2em;
    left: 50%;
    transform: translate(-50%, 0);

    background-color: #00000099;
    color: #FFF !important;
    text-align: center;
    padding: 2em;
    border-radius: 0.375rem;
    transition: opacity 0.2s ease-out;
}

.messages-notification > ul {
    padding: 0;   
    margin: 0;
}
.messages-notification > ul> li {
    color: #FFF !important;
    list-style-type: none;
    padding-bottom: 0.2em;
    padding-top: 0.2em;
}

form > img {
    display: block;
    margin:auto;
}
input#authenticator_secret {
    display: block;
    width: 100%;
    margin-bottom: 1em;
}