
@font-face {
    font-family: "Mulish";
    src: url("../fonts/Mulish-VariableFont_wght.ttf");
}



body {
    background: linear-gradient(131.44deg, #3DECF2 8.06%, #3D8BF2 36.12%, #23508C 73.63%, #D3226F 111.35%) fixed;
    font-family: Mulish, serif;
    margin: 0;
}

#password::placeholder {
    font-family: Mulish, serif;
}

.container {
    display: flex;
    flex-direction: column;
    gap: 45px;
    align-content: center;
    background: white;
    border-radius: 30px;
    padding: 64px 120px 64px 120px;
    width: 384px;
    margin: 5% auto 5%;
}

#logo {
    height: 29px;
}

#subtitle {
    font-size: 14px;
}

#title, #title-totp, #subtitle-totp, label {
    color: #153155;
}



#subtitle-totp {
    font-size: 14px;
    line-height: 20px;
}

h1 {
    font-size: 27px;
    line-height: 10px;
}

#star {
    margin-left: 2px;
    display: inline-flex;
    align-items: center;
    color: #FF6363;
}

#arrow {
    /* Vector */
    position: absolute;
    left: 25.02%;
    right: 25%;
    top: 24.98%;
    bottom: 24.98%;

    background: #6D6D6D;
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 384px;
}

#totp-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#form-container input {
    font-family: Mulish, serif;
}

#password-input-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#forgot-password {
    text-decoration: none;
    color: #3D8BF2;
}

#password-rules {
    font-size: 9px;
}

.oauth-input input {
    width: 100%;
    color: #6D6D6D;
    border-radius: 3px;
    border: 2px solid #DADADA;
    height: 34px;
    box-sizing: border-box;
}

.oauth-input {
    font-size: 11px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.password-container {
    position: relative;
    width: 100%;
}

.password-container img {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

#connection-button, #external-connection-button {
    padding: 8px;
    background: #3D8BF2;
    border-radius: 3px;
    border: #3D8BF2;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

#connection-button:hover, #external-connection-button:hover {
    opacity: 0.9;

}

#cancel-button {
    padding: 8px;
    width: 100%;
    background: white;
    border-radius: 3px;
    border: white;
    color: #3D8BF2;
    font-weight: bold;
    cursor: pointer;
}

#go-back-button {
    padding: 8px;
    width: 100%;
    background: white;
    border-radius: 3px;
    border: white;
    color: #6D6D6D;
    text-align: left;
    cursor: pointer;
    font-family: Mulish, serif;
}

#go-back-container {
    display: flex;
    flex-direction: row;
    padding-left: 8px;
}

#webauthn-signin-button {
    padding: 8px;
    width: 100%;
    background: #F2F2F2;
    border-radius: 3px;
    border: #F2F2F2;
    color: black;
    cursor: pointer;
}

#button-registration {
    padding: 8px;
    width: 100%;
    background: #3D8BF2;
    border-radius: 3px;
    border: #3D8BF2;
    color: white;
    cursor: pointer;
}

#separator {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 384px;
    align-items: center;
    gap: 10px;
    color: #B6B6B6;
}

.line-separator {
    border-bottom: 2px solid;
    width: 100%;
    height: 1px;
}

.register-container a {
    color: #3D8BF2;
}

.register-container {
    font-size: 14px;
}

#toast {
    min-width: 250px; /* Set a default minimum width */
    background-color: rgba(229, 68, 68, 0.85);
    color: #fff;
    text-align: center;
    border-radius: 0.4rem;
    border: rgba(229, 68, 68, 0.85);
    padding: 16px;
    position: fixed;
    left: 50%;
    top: 3%;
    transform: translate(-50%, 0px);
    box-shadow: 0 0 11px rgba(33,33,33,.2);
    display: flex;
    align-items: center;
    gap: 30px;
}

#toast-info {
    min-width: 250px; /* Set a default minimum width */
    background-color: rgba(61, 139, 242, 0.85);
    color: #fff;
    text-align: center;
    border-radius: 0.4rem;
    border: rgba(61, 139, 242, 0.85);
    padding: 16px;
    position: fixed;
    left: 50%;
    top: 3%;
    transform: translate(-50%, 0px);
    box-shadow: 0 0 11px rgba(33,33,33,.2);
    display: flex;
    align-items: center;
    gap: 30px;
}

.qr-container {
    display: flex;
    justify-content: center;
    align-items: center;
}


.toast_remove {
    border: none;
    cursor: pointer;
}

.close {
    position: relative;
    top: -10px;
}

.close:after {
    content: "\02DF"; /* symbole x */
    font-size: 35px;
    color: #fff;
}

#external-connection-button {
    text-decoration: none;
    height: 32px;
    background-color: #243783;
    display: flex;
    justify-content: center;
    align-items: center;
}



#external-connection-button img {
    width: 59%;
}