.back {
    position: fixed;
    z-index: 80;
    width: 100vw;
    display: flex;
    justify-content: center;
}
.back a {
    z-index: 90;
    position: relative;
    padding: 10px;
}

#frontdrop-bg {

    background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,1) 100%);
    width: 100%;
    display: flex;
    justify-content: center;
}


.blockForm div {
    margin: 8px 0;
}
.formContent
{
    z-index:60;
}
.formContent, .formSpacer {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.formSpacer {
z-index:1;
}
form input {
    background: none;
    color: #eee;
    border: 1px solid #eee;
    padding: 10px;
    margin-right: 16px;
}
@media screen and (max-width: 700px) {
    .formContent {
        width: 100%;
    }
    .textBlock {
        margin: 5px !important;
    }
    .blockForm {
    min-height: calc(100vh - 183px);
    display: flex;
    flex-direction: row;
    justify-content: center;
}
    form input {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    form {
        display:flex;
        flex-direction: column;
    }
}
@media screen and (min-width: 701px) {
    .formContent {
        width: 100%;
    }
    .textBlock {
        margin: 0px;
    }
    .blockForm {
    min-height: calc(100vh - 183px);
    display: flex;
    flex-direction: row;
    justify-content: initial;
}
    form input {
        margin-top: 0px;
        margin-bottom: 0px;
    }

    form {
        display:flex;
        flex-direction: row;
    }
}
form label, form input, form input.button, textarea {
    font-size: 24px;
    border-radius: 8px;
}

textarea {
    background: none;
    color: white !important;
}
.form label {
    display: flex;
    justify-content: center;
    align-items: center;
}
form input:focus, label:focus
{
    outline: none;
}

form input[type="submit"] {
    cursor: pointer;
    color: #111;
    border: 1px solid #111;
    font-family: OswaldMedium;
    padding: 6px 10px;
}


.netteFormsModal, .netteFormsModal button
{color: #333;}

#intakeResponse {
    font-size: 36px;
}
.formContent .button {
    font-weight: 500;
}
.formColumn {
    display: flex;
    flex-direction: column;
}
.formRow {
    display: flex;
    flex-direction: row;
}

form label {font-size: initial;}

/* Style for custom checkbox */
#frm-buyForm-agree, #frm-downloadForm-agree {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #0090FF; /* Dark border */
    border-radius: 4px; /* Slightly rounded corners */
    background-color: transparent;
    position: relative;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    margin-left: 0;
}

/* Checkbox checked state */
#frm-buyForm-agree:checked, #frm-downloadForm-agree:checked {
    background-color: transparent; /* Blue background when checked */
    border-color: #0090FF; /* Blue border when checked */
}

/* Custom checkmark inside the checkbox */
#frm-buyForm-agree:checked::after, #frm-downloadForm-agree:checked::after {
    content: '✓';
    position: absolute;
    top: 0px;
    left: 1px;
    width: 0px;
    height: 0px;
    background-color: #111;
    border-radius:
            2px;
    margin-top: -7px;
    color: #0090FF;
    font-weight: 1000;
}

/* Hover effect for the checkbox */
#frm-buyForm-agree:hover, #frm-downloadForm-agree:hover {
    border-color: #0090FF; /* Blue border on hover */
}

a {
    align-items: center;
    display: flex;
}