@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "Montserrat", sans-serif;
}

img{
    width: 100%;
}

a{
    text-decoration: none;
}

.login{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 190px;
}

.login-card{
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .12), 0 3px 6px rgba(0, 0, 0, .15);
}

.login-card:nth-child(1) {
    height: 100%;
    padding: 150px 0 150px 30px;
    position: relative;
}

.login-card h2 {
    color: #54575a;
    font-size: 19px;
    font-weight: 700;
    margin: 0 0px 30px;
}

.login-card .form-group label {
    margin-bottom: 4px;
    font-weight: 600;
    color: #54575a;
}
.login-card .form-group input {
    font-size: 16px;
    border-radius: 0;
    border-color: #a4a5a7;
    height: 40px;
    width: 80%;
}

.separator {
    height: 85%;
    border-left: 1px solid #c2c2c2;
    margin-top: 2%;
    position: absolute;
    left: 46%;
    top: 0;
}

.right img {
    width: 30%;    
}

.right h2 {
    margin: 20px 0 20px 0;
}

section.login input.btn.btn-success {
    background: #0b9efa;
}

