@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

html, body {
    max-width: 100%;
    overflow-x: hidden;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

.logo-area img {
    width: 120px;
}

.banner-bg {
    background: #2c6ee1;
    margin-top: 20px;
    padding: 60px 0px;
}

.btn-view {
    color: white !important;
    background: transparent !important;
    border: 2px solid white !important;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 0px;
    margin-bottom: 20px;
    padding: 10px 40px;
}

.main-context p {
    font-size: 14px;
}

.main-context p .text-contxt {
    font-size: 14px;
    font-weight: 400;
}

.site-header {
    background: white;
    padding: 17px 15px;
    border-bottom: 1px solid rgba(25, 24, 35, .1490196078);
}

.img-logo {
    width: 120px;
}

.site-footer {
    background: white;
    border-top: 1px solid rgba(25, 24, 35, .1490196078);
    padding: 10px 15px;
}

.site-footer span {
    color: rgba(25, 24, 35, 0.712);
    font-size: 10px;
}

.site-footer span a {
    color: rgba(25, 24, 35, 0.712);
    text-decoration: none;
}

.site-footer span a:hover {
    color: rgba(25, 24, 35, 0.822);
    text-decoration: underline;
    text-decoration-color: rgba(25, 24, 35, 0.822);
}

.site-footer img {
    width: 50px;
}

.auth-box {
    background: white;
    border: 1px solid rgba(25, 24, 35, .1490196078);
    border-radius: 4px;
    padding: 50px;
}

@media (max-width:480px) {
    .auth-box {
        padding: 40px 35px;
    }
}

.auth-box p {
    font-size: 15px;
    font-weight: 300;
}

.auth-box form .form-group .form-label {
    font-size: 15px;
    font-weight: 500;
}

.auth-box form .form-group .form-control {
    border-radius: 0px;
    border-color: rgb(75, 75, 75);
    font-weight: 300;
    font-size: 15px;
    /* padding: 8px 15px; */
}

.auth-box form .form-group .form-control:focus {
    border: 2px solid rgb(0, 105, 236);
    box-shadow: none;
    outline: none;
}

.btn-login {
    color: white;
    background: rgb(0, 105, 236);
    border-radius: 0px;
    font-weight: 500;
    padding: 8px 15px;
}

.btn-login:hover {
    color: white;
    background: rgb(2, 87, 190);
}