@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@100;200;300;400;500&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto Condensed', sans-serif;
}

:root {
    --primary-color: #126e51;
    --black-color: #383838;
}

a{
    text-decoration:none;
}

.login_bb {
    width: 100%;
    background-image: linear-gradient(var(--primary-color), var(--black-color));
    display: flex;
    justify-content: center;
    height: 100vh;
}

.login_box {
    max-width: 350px;
    width: 100%;
    margin: 3% 8%;
}

.logo_box {
    margin-bottom: 20px;
    max-height: 65px;
}

.form_box {
    padding: 20px;
    border-radius: 4px;
    background: var(--black-color);
}

.form_box span {
    display: block;
    width: 100%;
    text-align: center;
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 3px;
}

.form_box span i {
    margin-left: 3px;
}

.form_box form {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.form_box form .input_f {
    width: 100%;
}

.form_box form .input_f input {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form_box form .form_btn {
    width: 100%;
}

.form_box form .form_btn button {
    width: 100%;
    display: block;
    font-weight: 400;
    text-align: center;
    border: 1px solid;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    cursor: pointer;
    margin-bottom: 2px;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.form_box form .form_btn button i{
    float: right;
    vertical-align: middle;
}

.pri_pol{
    font-size: 13px;
    font-weight: 400;
    color: white;
    margin-bottom: 8px;
}
.pri_pol a{
    color: #007bff;
}
.mailto{
    text-align: center;
    color:#007bff;
}

@media screen and (max-width:768px){
    .login_box {
    margin: 13% 8%;
}
}
}