@import url('https://fonts.googleapis.com/css2?family=Rethink+Sans:wght@400;500;700&display=swap');

body,
html {
    font-family: "Rethink Sans", Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

:is(h1, h2, h3, h4, h5, h6) {
    margin: 0;
}

h1 {
    font-size: 45px;
}

#content {
    display: flex;
    flex-direction: row;
}

.section {
    display: flex;
    flex-direction: column;
    /* width: 50%; */
    padding: 20px;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

#left {
    width: 40%;
    padding-bottom: 100px;
    border: 2px dashed #aaa;
    margin: 20px;
    height: calc(100vh - 40px);
}

#right {
    width: 60%;
    background-image: linear-gradient(#4c90b5cb, #4c90b5cb), url('travel-bg.jpg');
    background-size: cover;
}

/* Content */

h2 {
    font-weight: 400;
}

.logo {
    max-width: 200px;
    margin-bottom: 30px;
}

.price {
    font-size: 25px;
    font-weight: bold;
}

#formWrap {
    width: 100%;
    max-width: 600px;
    padding: 60px;
}

#formWrap h2 {
    color: #fff;
    font-weight: 500;
    font-size: 40px;
    margin-bottom: 25px;
}

#formWrap :is(input, textarea):not(input[type=submit]) {
    display: block;
    width: 100%;
    padding: 15px;
    margin-bottom: 12px;
    border: 0;
    border-radius: 4px;
    font-size: 18px;
    font-family: "Rethink Sans", Helvetica, sans-serif;
}

input[type=submit] {
    padding: 20px;
    border: 0;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 500;
}

.success {
    color: #fff;
    font-size: 25px;
    font-weight: 500;
}

@media (max-width: 900px) {
    #content {
        display: flex;
        flex-direction: column;
    }

    #left,
    #right {
        width: 100%;
    }

    .section {
        height: auto;
    }

    #left {
        height: auto;
        padding-bottom: 0px;
        width: calc(100% - 40px);
    }
}