﻿*,
*:before,
*:after {
    box-sizing: inherit;
}
html {
    scroll-behavior: smooth;
}
html,
body {
    box-sizing: border-box;
    height: 100%;
}
body {
    margin: 0;
    padding: 0;
    background-color: #fff;
    font-family: Inter, sans-serif;
    font-size: 14px;
}
/* Page */
section {
    min-height: 100vh;
    background: #fff;
}
section.first {
    background: rgb(0, 122, 114);
    background: linear-gradient(0deg, rgba(0, 122, 114, 1) 0%, rgb(28 93 147) 100%);
}
section.alternate {
    background: #f9f9f9;
}
section header {
    width: 960px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}
section header span {
    flex: 1;
}
section header a.button {
    display: flex;
    padding: 12px 20px;
    background: #ff6a00;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
section header a.button.grey {
    background: #666;
}
section .content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0 auto;
    width: 960px;
}
section.has-header .content {
    min-height: calc(100vh - 80px);
}
@media only screen and (max-width: 1024px) {
    section header {
        width: 90%;
    }
    section .content {
        width: 90%;
    }
}
/* Form Field */
.form-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
}
.form-field label {
    color: #333;
    padding: 10px;
    letter-spacing: 1px;
}
.form-field.color-background label {
    color: #fff;
}
.form-field input {
    background: #eee;
    border: 0;
    color: #333;
    padding: 20px;
    font: inherit;
    letter-spacing: 1px;
    border-radius: 5px;
    outline: 0;
}
.form-field.color-background input {
    background: rgba(255, 255, 255, .3);
    color: #fff;
}
.form-field input::placeholder {
    color: #333;
    opacity: 1;
}
.form-field.color-background input::placeholder {
    color: #fff;
}
.form-field input:focus {
    outline: 2px dashed #ff6a00;
}
/* Form Actions */
.form-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-right: 20px;    
}
.form-actions span {
    flex: 1;
}
.form-actions a {
    color: #fff;
    text-decoration: none;
}
    .form-actions a.orange {
        color: #ff6a00;
    }
.form-actions a:hover {
    text-decoration: underline;
}
.form-actions input[type=submit] {
    padding: 12px 20px;
    background: #ff6a00;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font: inherit;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 0;
}