
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rubik', sans-serif;
    -webkit-font-smoothing: antialiased;
}
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding:0;
    margin:0;
    width:100%;
    background-color: #f1f5f8;
}

.container {
    height: 100vh;
    width: 100%;
    /* max-width: 100%; */
    display: flex;
    align-items: center;
    justify-content:space-around;
    /* column-gap: 00; */
    /* margin-left: 15px; */
    /* margin-right: 15px; */
    padding-left: 15px;
    padding-right: 15px;
}
.bankid-img {
    position: relative;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-top: 0px;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom:15px;
    margin-top:30px;
    text-align: center;
    display: block;
}
.footer_logo {
    width:120px;
    height:auto;
}
.logo_login {
    height:45px;
    width:45px;
    display:block;
    text-align: center;
    margin:0 auto;
    margin-bottom:10px;
}
.form {
    position: relative;
    max-width: 380px;
    width: 100%;
    padding: 30px;
    border-radius: 10px;
    background: #FFF;
    box-shadow: rgba(20,46,110,.1) 0px 1px 8px;
}
.form.signup{
    opacity: 0;
    pointer-events: none;
}
.forms.show-signup .form.signup{
    opacity: 1;
    pointer-events: auto;
}
.forms.show-signup .form.login{
    opacity: 0;
    pointer-events: none;
}
header {
    font-size: 30px;
    font-weight: 600;
    color: #08090a;
    text-align: center;
}
form{
    margin-top: 10px;
}
.form .field{
    position: relative;
    height: 50px;
    width: 100%;
    margin-top: 10px;
    border-radius: 10px;
}
.field input,
.field button{
    height: 100%;
    width: 100%;
    border: none;
    font-size: 16px;
    font-weight: 400;
    border-radius: 10px;
}
.field input{
    outline: none;
    padding: 0 15px;
    border: 1px solid#DDD;
}
.field input:focus{
    border-bottom-width: 2px;
}
.eye-icon{
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #8b8b8b;
    cursor: pointer;
    padding: 5px;
}
.field button{
    color: #fff;
    background-color: #7ed321;
    transition: all 0.3s ease;
    cursor: pointer;
    transition: 0.5s;
}
.field button:hover{
    opacity:0.7;
}
.form-link{
    text-align: center;
    margin-top: 2px;
}
.form-link span,
.form-link a{
    font-size: 14px;
    font-weight: 400;
    color: #08090a;
}
.form a{
    color: #0171d3;
    text-decoration: none;
}

.line{
    position: relative;
    height: 1px;
    width: 100%;
    margin: 36px 0;
    background-color: #d4d4d4;
}
.line::before{
    content: 'Eller';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #FFF;
    color: #8b8b8b;
    padding: 0 15px;
}
.media-options a{
    display: flex;
    align-items: center;
    justify-content: center;
}
a.facebook{
    color: #4267b2;
    background-color: #FFF;
    border: 1px solid #4267b2;
    transition: 0.5s;
}
a.facebook .facebook-icon{
    height: 28px;
    width: 28px;
    color: #0171d3;
    font-size: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}
.facebook-icon,
img.google-img{
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
}
img.google-img{
    height: 20px;
    width: 20px;
    object-fit: cover;
}
a.google{
    border: 1px solid indianred;
    transition: 0.5s;
}
a.google span {
    font-weight: 400;
    /* opacity: 0.6; */
    color: indianred;
}

a.google:hover, a.facebook:hover {
    transform: scale(1.04);
    text-decoration: none;
    
}


.footer_container {
    display:flex;
    justify-content: left;
    align-items: center;
    gap:20px;
    width:100%;
    margin-top:30px;
    border-top:1px solid #eee;
    padding-top:10px;
}

.footer_container .col {
    width:auto;
}

.footer_container span  {

    text-align: left;
    color:#888;
    font-size:11px;
}

@media screen and (max-width: 400px) {
    .form{
        padding: 20px 10px;
    }
    
}


.session_timeout {
    background: beige;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size:13px;
}


.session_timeout_info {
    background: lightcyan;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size:16px;
}


.login_button {
    background: #2a4fab;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    padding: 20px 30px;
    color: #FFF!important;
    text-decoration: none;
    margin-top:30px;
}
.login_button:hover {
    opacity:0.7;
    text-decoration: none;
    border:0;
}


.confirm_user {
    max-width:600px;
}



@media screen and (max-width: 767px) {


    .container {
        height: auto;
        margin-top:30px;
        transition: 0.6s;
    
    }
    
}