﻿.login-view .brand-view {
    width: 100%;
    height: 100vh;
    background: url(/assets/signin/background.png);
    background-position: center;
    background-color: #42764d;
    background-blend-mode: overlay;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    padding-top: 100px;
}

.login-view .login-form {
    display: table;
    margin: 0 auto;
}

.login-view .login-form-inner-wrapper {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .login-view .login-form-inner-wrapper .hint-text {
        font-family: 'Roboto';
        font-style: italic;
        font-weight: 400;
        font-size: 12px;
        line-height: 17px;
        color: #424242;
        padding-top: 5px;
        padding-bottom: 14px;
    }

    .login-view .login-form-inner-wrapper .feature-title {
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 400;
        font-size: 30px;
        line-height: 20px;
        display: flex;
        align-items: center;
        color: #000000;
        border-bottom: 1px solid #D6D6D6;
        padding-bottom: 17px;
        width: 262px;
    }

    .login-view .login-form-inner-wrapper input {
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        display: flex;
        align-items: center;
        color: #424242;
        width: 262px;
        height: 30px;
        margin-top: 17px;
        max-width: 262px;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 2px;
    }

    .login-view .login-form-inner-wrapper .btn-submit {
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        text-align: center;
        color: #FFFFFF;
        box-sizing: border-box;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 5px 9px;
        gap: 4px;
        width: 61px;
        height: 30px;
        background: #335B3C;
        border: 1px solid #335B3C;
        border-radius: 2px;
        white-space: nowrap;
    }

/* Responsive */
@media (max-width: 760px) {
    body .login-view .brand-view {
        background: unset;
        background-color: #42764d;
        height: unset;
        padding: 46px;
    }

        body .login-view .brand-view .header-logo {
            width: 220px;
        }

    .login-view .login-form {
        padding: 42px;
    }

    body .login-view .login-form-inner-wrapper {
        height: unset;
    }
}
@media (max-width: 375px) {
    .login-view .login-form {
        padding: 30px 20px; 
        display: block;
    }
    .login-view .login-form-inner-wrapper .feature-title, .login-view .login-form-inner-wrapper input{width: 100%; }
}
@media (min-width: 738px) and (max-width: 759px) {
    .mobile_res{
        flex: 1 0 50% !important;
    }

}