/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
* {
	font-family: 'Lato', sans-serif;
}

/* GENERAL */
html, 
body {
    height: 100%;
}
body {
    background-image: url(../../router/images/wv-bg.png);
    background-size: contain;
    background-repeat: repeat;
} 

/* LOGO & ENV */
.logo-env-divider {
    height: 31px;
    background: rgba(204, 204, 204, 1);
    width: 1px;
    border-radius: 2px;
    margin: 0 12px;
}
.env {
    font-weight: 700;
    font-size: 14px;
    line-height: 12px;
    letter-spacing: 0.16em;
    vertical-align: middle;
    color: rgba(75, 75, 75, 1);
}

/* FORM */
.rbs-loginWrapper * {
    color: #4B4B4B;
}
.rbs-loginWrapper.container {
    position: absolute;
    height: fit-content;
    width: fit-content;
    margin: auto;
    inset: 0;
    padding: 0;
}
.rbs-loginWrapper label {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 12px;
}
.rbs-loginWrapper .rbs-loginBody {
    opacity: 1 !important; 
    width: 384px;
    max-width: 100%;
    margin: auto;
    padding: 24px;
    border-radius: 14px;
    border: 1px solid rgba(225, 233, 244, 1);
    box-shadow: 0px 1px 2px -1px #0000001A;
    box-shadow: 0px 1px 3px 0px #0000001A;
}
.rbs-logo {
    display: none;
}
.rbs-logospace {
    padding-bottom: 15px;
    display: grid;
    justify-content: center;
}
.rbs-logospace img {
    height: 32px;
    width: unset !important;
}
.rbs-titlebar {
    border: 0;
    padding: 0;
    color: #4B4B4B;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
}
.rbs-header {
    padding: 0;
    color: #717A89;
    font-size: 14px;
    margin-top: 6px;
} 
.rbs-loginBtn {
    background-color: #66A441 !important;
    border-radius: 8px !important;
}
.rbs-quickHelp a,
.rbs-supportedBrowser a {
    color: #66A441 !important;
}
.rbs-forgot-password-link {
    font-size: 14px;
}
.rbs-loginForm .form-group {
    margin-bottom: 24px;
}
.form-group .form-control {
    border-radius: 8px;
}
.form-group.space-between {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.rbs-loginForm .rbs-formData {
    margin-bottom: 0;
    margin-top: 24px;
}
.rbs-alert-error {
    align-items: center;
    margin-bottom: 0px;
    background-color: #f9f9f9;
    margin: 24px 0px !important;
}
button[type="submit"].btn-primary {
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
}


#btnLogin {
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
}

/* CHECKBOX */
.checkbox-container {
    display: flex !important;
    flex-direction: row-reverse;
    gap: 8px;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    height: 17px;
    width: 17px;
    border-radius: 3px;
    background-color: #eee;
}
.checkox-container:hover input + .checkmark {
    background-color: #ccc;
}
.checkbox-container input:checked + .checkmark {
    background-color: #66A441;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.checkbox-container input:checked + .checkmark:after {
    display: block;
}
.checkbox-container .checkmark:after {
    content: "";
    left: 6px;
    top: 4px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* FOOTER */
.rbs-loginFooter {
    width: 384px;
    max-width: 100%;
    margin: auto;
    /* position: absolute; */
}
.rbs-loginFooter * {
    font-size: 12px !important;
    color: #717A89 !important;
    line-height: 1em;
}
.rbs-loginFooter .rbs-languageChoice {
    margin-top: 20px;
}
.rbs-loginFooter .rbs-newUser,
.rbs-loginFooter .rbs-supportedBrowser {
    width: 100%;
    text-align: center;
    opacity: 1;
}
.rbs-loginFooter label[for="newUser"],
.rbs-loginFooter label[for="suppoortedBrowser"] {
    font-weight: 600;
}
.rbs-loginFooter label[for="languageChoice"] {
    font-weight: 600;
    color: #4B4B4B !important;
    margin-right: 12px;
}

/* RESPONSIVE */
@media only screen and (max-width: 390px) {
    .rbs-loginWrapper .rbs-loginBody {
        width: 360px;
    }
}