* {
    margin: 0px;
    padding: 0px;
}

body {
    margin: 0px;
    padding: 0px;
    font-family: Inter, sans-serif;
}

header {
    padding: 20px 40px;
    margin-bottom: 100px;
}

header #logo {
    float: left;
}

header #toggle {
    float: right;
    padding-top: 20px;
    width: 22px;
}

#container {
    width: 50%;
    margin: 0 auto;
    padding-bottom: 50px;
}

#container h3 {
    font-size: 36px;
}

#container h4 {
    font-size: 34px;
    word-wrap: break-word;
    line-height: 1.45;
}

#container p {
    margin: 40px 0px;
    font-size: 20px;
}

#fmdiv {
    width: 100%;
    height: 100px;
    margin-top: 50px;
}

.formfield {
    display: block;
    margin: 20px 0px;
    overflow: hidden;
}

.formfield label {
    display: block;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    margin: 0 0 4px 0;
}

.formfield .left {
    float: left;
    width: 47%;
}

.formfield .right {
    float: right;
    width: 47%;
}

.formfield .full {
    width: 100%;
}

.lb {
    display: block;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    margin: 3px 0px 8px 0px;
}

.important {
    color: #ff0000;
    font-weight: 400;
}


.formfield input {
    width: 100%;
    border: 1px solid #ccc;
    padding: 6px 10px;
    height: 38px;
    line-height: 1.3;
    color: #333;
    font-size: 16px;
    border-radius: 2px;
    box-sizing: border-box;
    outline: none;
}
.formfield select {
    width: 100%;
    border: 1px solid #ccc;
    padding: 6px 10px;
    height: 38px;
    line-height: 1.3;
    color: #333;
    font-size: 16px;
    border-radius: 2px;
    box-sizing: border-box;
    outline: none;
    background: white;
}

.drop-zone {
    max-width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    font-size: 20px;
    cursor: pointer;
    color: #cccccc;
    border: 1px dashed #009578;
    border-radius: 2px;
  }
  
  .drop-zone--over {
    border-style: solid;
  }
  
  .drop-zone__input {
    display: none;
  }
  
  .drop-zone__thumb {
    width: 100%;
    height: 100%;
    border-radius: 2px;
    overflow: hidden;
    background-color: #cccccc;
    background-size: cover;
    position: relative;
  }
  
  .drop-zone__thumb::after {
    content: attr(data-label);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px 0;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.75);
    font-size: 14px;
    text-align: center;
  }

input[type='radio']{
    width: 16px;
    height: 16px;
}

.submit {
    width: 100%;
    height: 3em;
    border: 1px solid #18BD5B;
    background: #18BD5B;
    color: #ffffff;
    border-radius: 2px;
    margin-bottom: 200px;
    font-size: 16px;
}

#ty {
    background-color: rgb(168, 216, 168);
    border: 1px solid rgb(47, 170, 47);
    padding: 20px 10px;
    margin-bottom: 500px;
}


@media screen and (max-width: 810px){
    #container {
        width: 90%;
    }

    #container h3 {
        font-size: 25px;
    }

    #container p {
        margin: 40px 0px;
        font-size: 18px;
    }

    #container h4 {
        font-size: 1.25em;
        word-break: break-word;
        line-height: 1.45;
    }

    header {
        padding: 20px;
        margin-bottom: 100px;
    }
}