* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #232526;
    /* fallback for old browsers */
    font: normal 16px/1.5 'Roboto New', Arial, Helvetica, sans-serif;
    text-align: center;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    height: 100vh;
    background: linear-gradient(-45deg, #000, #555, #999);
    background-size: 400% 400%;
    -webkit-animation: Gradient 15s ease infinite;
    -moz-animation: Gradient 15s ease infinite;
    animation: Gradient 15s ease infinite;
}

body:before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border: 50px solid rgba(255, 255, 255, .1);
    top: 150px;
    left: 50%;
    margin: 0 0 0 -300px;
    z-index: 1;
    box-sizing: border-box;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

@-webkit-keyframes Gradient {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@-moz-keyframes Gradient {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@keyframes Gradient {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

.cnt {
    position: relative;
    z-index: 2;
    padding-bottom: 80px;
}

.header {
    padding-top: 40px;
}

h1,
h2,
h3 {
    text-shadow: 1px 1px 0 rgba(0, 0, 0, .1);
    margin: 0;
    position: relative;
}

h1 {
    font: bold 50px/1 'Oswald', Arial, Helvetica, sans-serif;
    color: #fff;
    padding: 50px 0 50px;
    text-transform: uppercase;
}

h1 small {
    font-size: 24px;
    opacity: .6;
    filter: alpha(opacity=60);
    display: block;
}

h1:after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: #64D5E9;
    margin: auto;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
}

h3 {
    font: normal 20px/1 'Open Sans', Arial, Helvetica, sans-serif;
    color: #fff;
    font-weight: 300;
    padding: 40px 0;
    margin-bottom: 20px;
}

.row {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.field {
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    -o-flex: 1;
    -webkit-box-flex: 1;
    flex: 1;
    margin: 0 8px;
}

input[type='text'],
select,
textarea {
    border: 0;
    background: #fff;
    border-radius: 0px;
    height: 50px;
    width: 100%;
    padding: 0 16px;
    font: normal 14px 'Open Sans', Arial, Helvetica, sans-serif;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 40px;
    background: #fff url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMzIgMzIiIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiI+PHBhdGggZD0iTTExLjEgMTQuM2w0LjQgNC40Yy4zLjMuNi4zLjkgMGw0LjQtNC40Yy4zLS4zLjMtLjYgMC0uOWwtLjEtLjEtLjEtLjFjLS4zLS4zLS42LS4zLS45IDBsLS4xLjEtMy4yIDMuMmMtLjMuMy0uNi4zLS45IDBsLTMuMi0zLjItLjEtLjFjLS4zLS4zLS42LS4zLS45IDBsLS4xLjEtLjEuMWMtLjIuMy0uMi43IDAgLjl6IiBmaWxsPSIjNTU1Ii8+PC9zdmc+) no-repeat 100% 50% / contain;

}

input[type='text']:focus,
select:focus,
textarea:focus {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, .3);
    outline: none;
}

.container {
    padding: 0 50px;
    max-width: 870px;
    margin: auto;
    border-radius: 0;
}

label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
    text-align: left;
    text-transform: uppercase;
    font-family: 'Oswald';
}

[type='submit'] {
    height: 60px;
    padding: 0 70px;
    border-radius: 0px;
    border: 0;
    font: bold 24px/1.8 'Oswald', Arial, Helvetica, sans-serif;
    color: #fff;
    background: #37bed6;
    cursor: pointer;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

[type='submit']:hover {
    color: #fff;
    background: #64D5E9;
}

.textarea {
    display: none;
}

.full-height {
    height: 100vh;
}

.flex-center {
    align-items: center;
    display: flex;
    justify-content: center;
}

.position-ref {
    position: relative;
}

.content {
    margin-top: -120px;
    text-align: center;
}


@media all and (max-width: 768px) {
    body:before {
        display: none;
    }

    h1 {
        font-size: 40px;
        padding-top: 0;
        padding-bottom: 30px;
    }

    h3 {
        font-size: 20px;
        padding: 20px 15px;
        margin-top: 15px;
        margin-bottom: 0px;
        line-height: 1.5;
    }

    .container {
        padding: 20px;
    }

    .field {
        min-width: 100%;
        margin: 0 0 16px;
    }

    label {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .row {
        margin-bottom: 0;
    }

    .action {
        margin-top: 20px;
    }
}