body {
    font-family: Muli, Helvetica, Arial, Sans-serif;
    background-color: #f5f5f5;
    text-align: center;
    color: #333333;
}

p {
    font-size: 14px;
}

.main-container {
    display: inline-flex;
    flex-flow: column nowrap;
    justify-content: start;
    align-items: center;
    width: 300px;
    padding: 20px;
    background-color: #FFFFFF;
}

@media (min-width: 670px) {
    .main-container {
        width: 600px;
    }
}

.content {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.form {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.form-field {
    width: 100%;
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
}

.form-input {
    box-sizing: border-box;
    width: 100%;
    height: 40px;
    border: 1px solid #cecece;
    padding: 5px;
    background-color: #ffffff;
    font-size: 16px;
    font-family: Muli, Helvetica, Arial, Sans-serif;
    -webkit-appearance: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    box-shadow: inset 0 1px 3px rgba(0,0,0,.06);
    -webkit-box-shadow: inset 0 1px 3px rgba(0,0,0,.06);
    transition: border-color 150ms ease;
}

.form-input:hover {
    border-color: #a5a5a5;
}

.form-input:focus {
    border-color: #ff6600;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.06), 0 0 5px rgba(#ff6600,0.7);
    -webkit-box-shadow: inset 0 1px 3px rgba(0,0,0,0.06), 0 0 5px rgba(#ff6600,0.7);
    outline: none;
}

.form-button {
    width: 100%;
    height: 50px;
    padding: 10px 0;
    border: none;
    background-color: #ff6600;
    font-size: 16px;
    font-family: Muli, Helvetica, Arial, Sans-serif;
    color: #FFFFFF;
    text-transform: uppercase;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
}

.form-button:hover {
    cursor: pointer;
}

.footer {
    padding: 20px;
    font-size: 12px;
}

.footer span {
    display: block;
    margin: 5px;
}

.content-container {
    flex-grow: 1;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
}

.privacy-policy {
    margin-bottom: 0;
    color: #ff6600;
    text-decoration: none;
}

.confirmed {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    height: 200px;
}

.error {
    margin: 5px 0 0 0;
    font-size: 12px;
    color: #CB0000;
}

/* Spinner */

.spinner {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
}

.spinner > div {
    width: 10px;
    height: 10px;
    margin: 0 3px;
    background-color: #ff6600;

    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% { -webkit-transform: scale(0) }
    40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% { 
        -webkit-transform: scale(0);
        transform: scale(0);
    } 40% { 
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}
