* {
    font-size: inherit;
    font-weight: inherit;
    font-family: montserrat, sans-serif
}

body {
    overflow: hidden;
    color: white;
    font-weight: 600;
}

#content {
    padding: 1%
}

#thank-you-container {
    padding: 3%;
    border: medium solid white;
    text-align: center
}

.error:not(:empty) {
    width: 100%;
    color: #ffbcbc;
    margin-bottom: 1em;
    display: block;
    clear: both
}

.button-container {
    width: 100%
}

input {
    border-radius: 0
}

input[type="text"],
input[type="password"],
textarea,
select {
    width: 100%;
    border: medium solid white;
    padding: .25em 1em;
    outline: none;
    box-sizing: border-box;
    margin: 10px 0;
    background: white;
    color: black;
    height: 2.5em
}

input[type="text"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.5)
}

input[type="text"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.5)
}

input[type="text"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder,
textarea::-ms-input-placeholder,
select::-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.5)
}

input[type="text"]::placeholder,
input[type="password"]::placeholder,
textarea::placeholder,
select::placeholder {
    color: rgba(0, 0, 0, 0.5)
}

textarea {
    resize: none;
    min-height: 15vh
}

@keyframes rotate {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

button {
    cursor: pointer
}

button[type="submit"] {
    border: 1px solid white;
    color: white;
    background: transparent;
    outline: none;
    font-size: 1.2em;
    padding: .3em 2em;
    margin-left: auto;
    display: block;
    transition-property: all;
    transition-duration: .4s;
    transition-timing-function:ease;
    text-transform: uppercase;
    font-weight: 900;
}

button[type="submit"]:active,
button[type="submit"]:hover {
    color: black;
    background-color: white
}

button[type="submit"]:disabled {
    opacity: .5
}

button[value="delete"] {
    background: red
}

label {
    color: white
}

#download-help-click button {
    background: none;
    outline: none;
    border: none;
    text-decoration: underline;
    padding: 0;
    margin: 0
}

a {
    text-decoration: underline;
    color: white
}

.input-group:nth-child(2n + 1) {
    float: left
}

.input-group:nth-child(2n) {
    float: right
}

.input-group:nth-child(1),
.input-group:nth-child(2) {
    width: 49%
}

.input-group:nth-child(3) {
    width: 29%
}

@media only screen and (max-width:1000px) {
    .input-group:nth-child(3) {
        width: 49%
    }
}

.input-group:nth-child(4) {
    width: 69%
}

@media only screen and (max-width:1000px) {
    .input-group:nth-child(4) {
        width: 49%
    }
}

.input-group:nth-child(5) {
    margin-top: 1em;
    width: 69%
}

.input-group:nth-child(6) {
    margin-top: 1em;
    width: 29%
}

h2 {
    font-size: 1.3em;
    font-weight: bolder
}