
:root {

    --base_background: 21, 46, 77; 
    /* --base_background: 36, 41, 47; */
    
    --main_background: rgb(var(--base_background));
    --mainBackgroundOpasity_75: rgba(var(--base_background), .75);
    --mainBackgroundOpasity_50: rgba(var(--base_background), .5);
    --mainBackgroundOpasity_25: rgba(var(--base_background), .25);
    --mainBackgroundOpasity_10: rgba(var(--base_background), .1);
    
    --backgroundGrey: #b5b5b5;
    
    --mainColor1: #3e3e3e;
    
    --header_height: 65px;

}

body{
    padding: 0;
    margin: 0;
    background-color: #152e4d;
    font-family: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    transition: all 300ms;
}
*{
    transition: all 300ms;
    box-sizing: dorder-box;
}
a{
    text-decoration: none;
}
.page {
    height: calc(100vh - 130px);
    display: flex;
    justify-content: center;
}
.form_header .logo-header_svg {
    width: 35px;
    height: auto;
    fill: var(--main_background);
}
.form_header span.logo-span {
    display: block;
    color: var(--main_background);
    font-weight: 600;
    font-size: 29px;
    height: 30px;
    position: relative;
    top: -3px;
    left: 4px;
}
input {
    background-image: none;
    border: 0;
    color: inherit;
    font: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
    -webkit-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
}
.box_form,
.form_login {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 370px;
    margin-top: 120px;
    animation: anim_formlogin 320ms linear;
}
.form_field {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.form_input, 
.form_input:active, 
.form_input:focus-within, 
.form_input:focus-visible, 
.form_input:focus {
    display: block;
    box-sizing: border-box;
    font-size: 16px;
    width: 290px;
    height: 47px;
    border-radius: 4px;
    margin-bottom: 16px;
    color: #000;
    background-color: #e8f0fe !important;
    padding: 0 12px;
    font-weight: 300;
}
.form_submit {
    display: block;
    width: 290px;
    height: 47px;
    border-radius: 4px;
    background: #314b6e;
    color: #83a2cf;
    cursor: pointer;
}
.form_submit:hover{
    background: #395274;
}
.form_header {
    width: 100%;
    height: 80px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    padding-right: 13px;
}
#noAkkount {
    display: inline-block;
    margin-top: 20px;
    color: var(--main_background);
    font-size: 12px;
    opacity: 0.6;
    cursor: pointer;
    text-decoration: none;
    transition: all 300ms;
    width: 100%;
    text-align: right;
}
#noAkkount:hover{
    opacity: 1;
}
.alert-danger,
.form_login .error_message {
    color: #e16666;
    margin-bottom: 15px;
}
.form_name-box {
    width: 290px;
}
.form_name {
    display: block;
    color: #83a2cf;
    font-weight: 600;
    font-size: 29px;
    margin: 0;
}
.box_form .form_header {
    padding-right: 0px;
    height: 45px;
    margin-bottom: 22px;
}
.agreeTerms>div{
    width: 290px;
    margin-bottom: 20px;
    display: flex;
}
.agreeTerms label {
    order: 2;
    color: rgb(181 181 181);
    font-size: 14px;
    position: relative;
    top: 3px;
}
.agreeTerms input {
    order: 1;
    position: relative;
    top: 4px;
    margin-right: 5px;
}
.box_form ul {
    margin: 0 0 0 0;
    list-style-type: none;
    padding: 0;
}
.box_form ul li {
    color: #ff5f5f;
    margin-bottom: 10px;
}
.error_message {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
    padding: 20px;
}