@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

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

h1 {
    font-size: 50px;
    line-height: 64px;
    color: #222;
}

h2 {
    font-size: 46px;
    line-height: 54px;
    color: #222;
}

h4 {
    font-size: 20px;
    color: #222;
}

h6 {
    font-weight: 700;
    font-size: 12px;
}

p {
    font-size: 16px;
    color: #465b52;
    margin: 15px 0 20px 0;
}

.section-p1 {
    padding: 40px 80px;
}

.section-m1 {
    margin: 40px 0;
}

button.normal {
    font-size: 14px;
    font-weight: 600;
    padding: 15px 30px;
    color: #000;
    background-color: #fff;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: .2s;
}

button.white {
    font-size: 13px;
    font-weight: 600;
    padding: 11px 18px;
    color: #fff;
    background-color: transparent;
    cursor: pointer;
    border: 1px solid white;
    outline: none;
    transition: .2s;
}

body {
    width: 100%;
}

#section-main{
    display: flex;
    flex-direction:row;
}


#section1{
    width: 49%;
    height: 100vh;
    background-image: url(/assets/login-hero.jpg);
    background-size: cover;
    background-position: center;
}

#section2{
    width: 49%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-inline: 80px;
}

#section2 h1{
    margin-bottom: 20px;
}

#section2 input{
    width: 100%;
    margin: 5px;
    padding: 8px;
    margin-inline: auto;
}

#section2 button{
    display: block;
    width: 50%;
    margin-inline: auto;
    padding: 10px;
    border: 1px solid #222;
    background-color: transparent;
    margin-top: 10px;
    cursor: pointer;
    transition: .3s;
    color: #222;
}

#section2 button:hover{
    background-color: #222;
    color: white;
}

@media(max-width:700px){
    #section-main{
        flex-direction: column;
    }

    #section1{
        width: 100%;
        height: 50vh;
    }
    #section2{
        height: auto;
        width: 100%;
        padding: 20px;
    }

    #section2 input{
        width: 70%;
    }
}