@import 'https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap';
* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    color: #030229;
}

.login-wrap
{
    width: 100%;
    height: inherit;
    min-height: inherit;
    display: grid;
    grid-template-columns: 448px 1fr;
    background:#fafafa;
}

.login-sidebar
{
    padding: 50px;
    background: #fff;
    text-align: center;
}

.sidebar-logo
{
    width: 100px;
    height: 160px;
    display: block;
    margin: auto;
}

.logo-img
{
    width: 100%;
}

.logo-title
{
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
}

.sidebar-form
{
    width: 100%;
    padding: 25px 0;
    border-top: 1px solid #e6e6ea;
}

.sidebar-form .form-area:last-child
{
    padding-top: 39px;
}

.sidebar-form .form-input
{
    background: #F7F7F8;
    border-color: transparent;
}

.login-main
{
    background-image: url(login-bg.svg);
    background-size: 650px 554px;
    background-position: center;
    background-repeat: no-repeat;
}