html, body {
    /*font-family: 'Lato', sans-serif;*/
    font-family: 'Avenir', 'Nunito Sans', 'Jost', 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    background-color: rgba(253, 238, 195, 1);
}

.background {
    width: 100vw;
    height: 100vh;
    /*background: radial-gradient(circle at center, lightskyblue, lightseagreen);*/
    background-image: url('../images/map.jpg');
    background-size: cover;
    background-position: top;
    /*-webkit-filter: blur(5px);*/
    /*-moz-filter: blur(5px);*/
    /*-o-filter: blur(5px);*/
    /*-ms-filter: blur(5px);*/
    /*filter: blur(5px);*/
}

#top-left {
    width: 100vw;
    height: 100vh;
    background: linear-gradient(30deg, rgba(90, 82, 235, 1), rgba(0, 255, 255, 0.5) 100%);

    clip-path: polygon(0 0, 100% 0%, 100% 0%, 0 100%);
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 0%, 0 100%);
}

.foreground {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
}

.order-form-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
}

.order-form {
    width: 400px;
    /*background: linear-gradient(60deg, rgba(200, 200, 200, 1), rgba(255, 255, 255, 0.5) 100%);;*/
    background-color: rgba(255, 255, 255, 0.93);
    border-radius: 20px;
    display: flex;
    align-items: stretch;
}

input[type=text], input[type=email], input[type=url], input[type=number], select, #card-element {
    width: 100%;
    padding: 10px 10px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-sizing: border-box;
}

input[type=submit] {
    width: 100%;
    background-color: goldenrod;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#forward-to {
    margin-bottom: 0;
    white-space: nowrap;
}

#target {
    /*width: 50%;*/
}

#years {
    width: 60px;
}

#years-label {
    /*width: 70%;*/
}

#submit:hover {
    background-color: darkgoldenrod;
}

#right {
    margin-left: 50px;
    margin-right: 50px;
    padding-top: 20px;
    padding-bottom: 30px;
}

#domain {
    width: 50%;
    font-size: 20px;
}

#dot {
    display: inline-block;
    font-size: 20px;
}

.more-info {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
}

.reasons {
    float: right;
    text-align: left;
    /*height: 200px;*/
    background-color: floralwhite;
    margin-top: calc(50vh - 100px);
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

ul {
    list-style: none;
    padding-top: 10px;
    padding-right: 50px;
    font-size: 16px;
}

li {
    position: relative;
    padding-bottom: 10px;
}

li:before {
    display: inline-block;
    padding-right: 10px;
    /*!*-webkit-font-smoothing: antialiased;*/
    font-family: FontAwesome, serif;
    content: "\f058";
    text-align: center;
}

#total {
    padding: 5px;
    font-weight: bold;
}

@media only screen and (max-width: 500px) {
    .order-form {
        width: 90vw;
    }
}

@media only screen and (max-width: 1200px) {
    .reasons {
        visibility: hidden;
    }
}