@font-face {
    font-family: custom_font;
    src: url("/assets/fonts/OpenSans-VariableFont_wdth,wght.ttf");
}
html,body{
    margin: 0;
    padding: 0;
    font-family: custom_font;
}


/******Login page styles*******/
.login_logo{
    position: relative;
    margin: 25px auto 15px;
    width: 170px;
    height: 100px;
    border-radius: 50%;
    background-color: #4b5563;
    background-size: 100% 100%;
    background-position: center;
    background-image: url("/assets/images/halifax_bread.png");
}
.login_logo_title{
    text-align: center;
    color: #c0c0c0;
    font-size: 20px;
}
.login_field_box{
    position: relative;
    margin: 40px;
    margin-top: 80px;
    min-height: 200px;
}
.login_field_box .sign_in{
    text-align: left;
    font-size: 30px;
    color: #1e1e1e;
    font-weight: bold;
}
.login_field_box .hi_there{
    text-align: left;
    font-size: 18px;
    color: #c0c0c0;
    margin-top: 10px;
    margin-bottom: 40px;
}
.login_field_box .field_label{
    text-align: left;
    font-size: 16px;
    color: #fd455c;
    margin-top: 10px;
}
.login_field_box .field{
    text-align: left;
    font-size: 15px;
    color: #808080;
    border: none;
    border-bottom: solid 2px #e7e7e7;
    outline: none;
    width: 100%;
    height: 40px;
    margin-bottom: 10px;
}
.login_field_box .login_btn{
    width: 100%;
    height: 50px;
    padding: 10px 20px;
    border: none;
    outline: none;
    border-radius: 10px;
    background-color: #fd455c;
    color: white;
    font-size: 18px;
    margin-top: 30px;
    cursor: pointer;
    font-weight: bold;
}
.forgot_password{
    text-align: center;
    font-size: 15px;
    color: #c0c0c0;
    width: 100%;
    text-decoration: none;
}

.login_field_box .error{
    font-size: 14px;
    color: #b91c1c;
    margin-bottom: 40px;
}