html {
    height: 100%;
}

body {
    background: #000 url(../img/logo.png) no-repeat;
    background-position: center;
    background-size: 40%;
    margin: 0;
    padding: 0;
    height: 100%;
}

#mainform {
    margin: 0;
    padding-top: 3%;
    font-family: "Open Sans", "Roboto Currency", sans-serif;
    position: absolute;
    width: 100%;
    z-index: 1;
    background: #000000d9;
    font-size: .875rem;
}

#mainform.hide {
    display: none;
}

.small-desc {
    font-weight: normal;
}

#form {
    border-radius: 2px;
    padding: 20px 30px;
    font-weight: bold;
    width: 350px;
    margin: 0px auto;
    background: #fff;
    box-shadow: rgb(255 255 255 / 80%) 0px 0px 35px 0;
    z-index: 2;
    position: relative;
}

.close {
    font-size: 21px;
    float: right;
    cursor: pointer;
}

h3 {
    text-align: center;
    font-size: 1.075rem;
}

input {
    width: 338px;
    height: 35px;
    margin-top: 5px;
    border: 1px solid #999;
    border-radius: 3px;
    padding: 5px;
    margin-bottom: 20px;
}

input:focus,
textarea:focus {
    outline-color: #f7b733;
    outline-width: 1px;
    border-color: #f7b733;
}

input[type=button] {
    background-color: #fc4a1a;
    border: 1px solid #fc4a1a;
    font-family: "Open Sans", "Roboto Currency", sans-serif;
    font-Weight: bold;
    color: white;
    width: 351px;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
}

input[type=button]:hover,
input[type=button]:focus {
    background: #f7b733;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #f7b733;
    outline-color: #f7b733;
    color: #fff;
}

textarea {
    width: 338px;
    height: 80px;
    margin-top: 5px;
    border-radius: 3px;
    padding: 5px;
    resize: none;
}

span {
    color: red
}

#note {
    color: black;
    font-Weight: 400;
}

#returnmessage {
    color: green;
    text-align: center;
}

.color-red {
    color: red !important;
}

.bg-close {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
}

.footer {
    width: 100%;
    position: absolute;
    bottom: 0;
    color: #fff;
    font-family: "Open Sans", "Roboto Currency", sans-serif;
    font-size: .875rem;
    display: inline-flex;
    border-top: 1px solid #cccccc6e;
}

.footer .fl-l {
    float: left;
    padding: 10px;
}

.footer .fl-m {
    margin: auto;
    padding: 10px;
    display: inline-grid;
}

.footer .fl-r {
    float: right;
    padding: 10px;
}

.footer .fl-r a {
    cursor: pointer;
}

.footer .fl-r a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    body {
        background-size: 80%;
    }
    .footer {
        display: block;
        text-align: center;
        font-size: .675rem;
    }
    .footer .fl-m {
        margin: 40px 0 0 0;
        padding: 0 0 10px 0;
        position: absolute;
        text-align: center;
        width: 100%;
        left: 0;
    }
}