*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    color: #303433;
}

body{
    min-height: 100vh;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #f3eded;
}

section{
    display: flex;
    justify-content: center;
    align-items: center;
}

.sideImg{
    width:600px
}

.login-container{
    max-width: 450px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    display: flex;
    justify-content: center;
    text-align: center;
}

.logo{
    padding: 20px;
    margin-top: -100px;
    width: 450px;
}

.googleBtn{
    margin: 20px 20px 20px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.msg{
    text-align: center;
    font-size: 1.1em;
    line-height: 28px;
    margin-bottom: 30px;
    color: #696969;
}

.login-form{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.form-control{
    width: 100%;
    position: relative;
    margin-bottom: 24px;
}

input, button{
    border: none;
    outline: none;
    /* background-color: red; */
    border-radius: 30px;
    font-size: 1.1em;
}

.form-input{
    width: 100%;
    background-color: #e6e6e6;
    color: #333;
    letter-spacing: 0.7px;
    padding: 14px 64px;
}

input ~ i {
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    transition: color   0.4s;
}

.submit{
    color: white;
    background-color: rgb(255, 81, 0);
    border: 1px solid rgb(255, 81, 0);
    padding: 14px 64px;
    width: 32px auto;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

.submit:hover{
    color: rgb(255, 81, 0);
    background-color: white;
    border: 1px solid rgb(255, 81, 0);
}


/* Responsiveness */

@media (max-width: 999px) {
    .sideImg{
        width:500px
    }
}

@media  (max-width: 900px) {
    body{
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #f3eded;
        text-align: center;
        margin: 10px 10px 10px 10px;
    }

    .side{
        display: none;
    }
}    

@media (max-width: 400px){
    body{
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #f3eded;
        text-align: center;
        margin: 10px 10px 10px 10px;
    }

    .login-container{
        max-width: 350px;
    }

    .logo{
        width: 350px;
    }
}
