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

body {
    background-color: #F4F4F4;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
            'Helvetica Neue', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #111111;
}
h1,h2,h3 {
    font-weight: 800;
}
h1 {
    font-size: 34px;
    line-height: 42px;
}
h2 {
    font-size: 20px;
    line-height: 24px;
}
h3 {
    font-size: 16px;
    line-height: 24px;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
a {
    color: #9E28B5;
    text-decoration: underline;
}
ul li {
    background: url(https://cdn.questline.com/asset/get/b31d5810-d327-4272-847b-cd30c909217f?rand=1832228782);
    background-repeat: no-repeat;
    background-position: 0 3px;
    padding-left: 32px;
}
.container-fluid {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    height: 100vh;
}
main {
    flex: 2;
    color: #fff;
    padding-block: min(20vh, 10rem);
    padding-inline: min(20vw, 10rem);
    background: url(https://cdn.questline.com/asset/get/9d81c297-d427-42fc-b0de-ea0126e2b5c4?rand=1832228782), linear-gradient(180deg, #03527E 0%, #9E28B5 100%);
    background-size: cover;
    background-repeat: no-repeat;
}
aside {
    flex: 1;
    padding: 64px 32px;
}
.logo {
    margin-bottom: min(10vh, 8rem);;
}
.copy {
    max-width: 70%;
}
@media only screen and (max-width: 1200px) {
    main {
        flex: 1;
    }
    .copy {
        width: 100%;
        max-width: 100%;
    }
}
@media only screen and (max-width: 845px) {
    .container-fluid {
        flex-direction: column;
        height: auto;
    }
    main {
        padding: 4rem;
    }
    aside {
        max-width: 100%;
        padding: 32px;
    }
}
.form { 
    background-color: #fff;
    border: 1px solid #DEE2E6;
    border-radius: 4px;
    padding: 32px;
}
.form p span,
label span {
    color: #9E28B5;
}
label {
    font-weight: 400;
}
.error {
    color: red;
}
.form-error-container {
    margin: 24px 0;
    text-align: center;
    color: red;
    font-weight: bold;
}
.form-content-response {
    display: none;
    text-align: center;
}
.form-content-response img {
    display: inline-block;
    margin: 24px 0;
}
.form-content-response h2 {
    font-size: 32px;
    line-height: 40px;
}
.btn {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding: 0;
    padding: 8px 40px;
}
.btn-primary {
    background-color: #9E28B5;
    border-color: #9E28B5;
}
.btn-primary:active,
.btn-primary:active:hover,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary[disabled]:hover {
    background-color: #9E28B5;
    border-color: #9E28B5;
    box-shadow: none;
}
