﻿* {
    box-sizing: border-box;
}
html, body {
    margin: 0;
    height: 100%;
    background-color: #fff;
    font-family: 'Exo 2', Arial, sans-serif;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
}

h1, h2, h3, h4, h5 {
    font-family: 'Exo 2', Arial, sans-serif;
}

a {
    color: #ed3023;
    text-decoration: none;
}

ul {
    margin: 0;
}
h1 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 25px;
}

input[type=text],
input[type=email],
input[type=password],
select,
textarea {
    font-size: 16px;
    color: #3c404b;
    padding: 8px 12px;
    border: none;
    width: 100%;
    border: 1px solid #fff;
    font-family: 'Exo 2', Arial, sans-serif;
}

input.error {
    border: 2px solid #ed3023;
}
textarea.error {
    border: 2px solid #ed3023;
}

button {
    border: none;
    padding: 10px 20px;
    font-weight: 500;
    margin: 0;
    text-decoration: none;
    background-color: #ed3023;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    transition: all .25s;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-bottom: 3px solid #9e0b0f;
}
    button:hover {
        transition: all .25s;
        border-bottom: 3px solid #9e0b0f;
        background-color: #dc2b1f;
    }

    button.blue {
        background-color: #005596;
        border-bottom: 3px solid #024272;
    }
    button.blue:hover {
        background-color: #004b85;
        border-bottom: 3px solid #023b65;
    }

    /* Helpers */
.clearfix {
    display: block;
    content: "";
    clear: both;
}

.mt-5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-75 {
    margin-top: 75px;
}

.mt-100 {
    margin-top: 100px;
}

.text-center {
    text-align: center;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    position: relative;
    display: inline;
}

.select-container {
    position: relative;
    display: inline;
}

    .select-container:after {
        content: "";
        width: 0;
        height: 0;
        position: absolute;
        pointer-events: none;
    }

    .select-container:after {
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        top: .3em;
        right: .75em;
        border-top: 8px solid black;
        opacity: 0.5;
    }

.validation-error-message {
    margin-bottom: 10px;
    background-color: #ed3023;
    padding: 10px 20px;
    color: #fff;
    border-radius: 5px;
}
.success-message {
    margin-bottom: 10px;
    background-color: #008b25;
    padding: 10px 20px;
    color: #fff;
    border-radius: 5px;
}
