@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,700);
@import url(https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700);

* {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    box-sizing: border-box;
}

*,*:focus,*:hover{
    outline:none;
}

body {
    text-align: center;
    background: #f7f7f7;
    color: #1a1a1a;
    font: 83%/1.5 arial,tahoma,verdana,sans-serif;
}

div.clear {
    clear: both;
}

.hidden{
    display:none;
}

.logo {
    width: 300px;
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
}

.login-form-container {
    width: 100%;
    margin-top: 100px;
}

div.container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100vh;
}

div.left-col {
    width: 500px;
    height: 100vh;
    padding: 10px 80px;
    display: flex;
    flex-direction: column;
}

.login-form-container h1 {
    text-align: left;
    margin-bottom: 30px;
    font-size: 2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.login-form-email {
    text-align: left;
    font-size: 10px;
    color: #5e5e5e;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
}

.input-email {
    position: relative;
}

.login-input-email {
    width: 100%;
    padding: 12px 20px;
    box-sizing: border-box;
    background: white;
    border: 1px solid #a2a2a2;
}

.continue-button {
    padding: 10px 40px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    background: #edae49;
    color: #1a1a1a;
    border-radius: 3px;
    border: none;
    float: right;
    margin-top: 20px;
    cursor: pointer;
}

.continue-button:hover {
    background: #1a1a1a;
    color: #edae49;
}

#right-col {
    width: calc(100% - 500px);
    height: 100%;
    background: #43293c;
}

@media only screen and (max-width: 992px) {
    #right-col {
        display: none;
    }
    div.left-col {
        width: 100%;
        padding: 10px 20px;
    }
    .logo {
        width: 80%; 
    }
    .login-form-container {
        margin-top: 50px;
    }
    .login-form-container h1 {
        font-size: 1.5rem;
    }
}
