@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

html{
    margin: 0;
    height: 100%;
}

body{
    font-family: Roboto;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login_form{
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.01);
    box-shadow: 0 8px 32px 0px rgba(31,38,135, .37);
    border-radius: 15px;
    padding: 2% 4% 2% 4%;
    width: max-content;
}
.login_form h2{
    font-family: Poppins !important;
}

img.login_logo{
    display: block;
    margin: 0 auto;
    height: 160px !important;
    padding-bottom: 10px;
}

.login_form .column{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 2% 0 2% 0;
}
.login_form .column .col-group{
    display: flex;
    flex-direction: column;
    padding-top: 2%;
    margin-bottom: 4%;
}

.login_form .column .col-group label{
    font-family: Poppins;
    font-size: 1rem;
}

.login_input{
    padding: 1%;
    margin-top: 1%;
    width: 100%;
    border: none;
    outline: none;
    border-bottom: 1px solid rgba(116, 116, 116, 0.3);
}

.input_with_btn{
    display: flex;
    flex-direction: row;
    width: 100%;
}

.input_with_btn .show_password,.input_with_btn .hide_password {
    display: flex;
    align-self: center;
    cursor: pointer;
    margin: 2px;
    padding: 0 0 0 0;
    border-radius: 50%;
}

.input_with_btn .show_password.hidden,
.input_with_btn .hide_password.hidden{
    display: none;
}

.form-text.text-muted.invalid{
    color: rgb(207, 8, 8) !important;
}

.login_actions_section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.login_form .login_actions_section input[type=submit]{
    cursor: pointer;
    margin-top: 10px;
    color: #fff;
    background-color:  rgb(0, 85, 196);
    border: none;
    border-radius: 5px;
    outline: none;
    padding: 3% 4% 3% 4%;
    font-size: 1rem;
}
.login_form .login_actions_section a{
    text-decoration: none;
    margin-top: 10px;
    color: rgba(0,0,0,.5);
    font-size: .9rem;
}
.login_form .login_actions_section a:hover{
    color: #000;
}