@import "normalize.min.css";

@font-face {
    font-family: 'Skaut Bold';
    src: url("../font/skaut-bold-webfont.eot");
    src: url("../font/skaut-bold-webfont.eot") format( 'embedded-opentype' ),
         url("../font/skaut-bold-webfont.svg") format( 'svg' ),
         url("../font/skaut-bold-webfont.woff") format( 'woff' );
}

@font-face {
    font-family: 'TheMix';
    font-weight: 400;
    src: url("../font/TheMix_LT_400.svg");
    src:
    url("../font/TheMix_LT_400.svg") format( 'svg' ),
    url("../font/TheMix_LT_400.eot") format( 'embedded-opentype' ),
    url("../font/TheMix_LT_400.woff") format( 'woff' );
}
@font-face {
    font-family: 'TheMix';
    font-weight: 400;
    font-style: italic;
    src: url("../font/TheMix_LT_400i.svg");
    src: url("../font/TheMix_LT_400i.eot") format( 'embedded-opentype' ),
    url("../font/TheMix_LT_400i.svg") format( 'svg' ),
    url("../font/TheMix_LT_400i.woff") format( 'woff' );
}

@font-face {
    font-family: 'TheMix';
    font-weight: 700;
    src: url("../font/TheMix_LT_700.svg");
    src: url("../font/TheMix_LT_700.eot") format( 'embedded-opentype' ),
    url("../font/TheMix_LT_700.svg") format( 'svg' ),
    url("../font/TheMix_LT_700.woff") format( 'woff' );
}
@font-face {
    font-family: 'TheMix';
    font-weight: 700;
    font-style: italic;
    src: url("../font/TheMix_LT_700i.svg");
    src: url("../font/TheMix_LT_700i.eot") format( 'embedded-opentype' ),
    url("../font/TheMix_LT_700i.svg") format( 'svg' ),
    url("../font/TheMix_LT_700i.woff") format( 'woff' );
}

body {
    font-family: 'TheMix', sans-serif;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
}

h1, h2, h3 {
    font-family: 'Skaut Bold', serif;
    font-weight: 700;
}

a {
    color: #255C9E;
}

.content-box {
    background: #F6EBD8 url("../img/SKAUT_logo.svg") no-repeat top center;
    max-width: 440px;
    background-size: 250px auto;
    text-align: center;
    padding: 220px 25px 25px;
    border-radius: 25px;
}

.content-box--no-logo {
    background-image: none;
    padding-top: 25px;
}

.hidden {
    display: none;
}

.help-text {
    color: #657F6F;
    font-size: 0.95rem;
}

.alert {
    padding: .5rem;
    color: #fff;
}

.alert--error {
    background-color: #EA614A;
}

.alert--success {
    background-color: #008836;
}

.button {
    background-color: #255C9E;
    color: #fff;
    border-radius: .5rem;
    padding: .5rem 1rem;
    text-decoration: none;
    border: 0;
    line-height: 1.1;
    font-size: 1rem;
}

.button--right {
    float: right;
}

.button--left {
    float: left;
}

.button--block {
    width: 100%;
    display: block;
}

.button--secondary {
    background-color: #ECDCAF;
}

.indicator {
    clear: both;
    text-align: center;
    margin: 0;
    padding: 1rem 0 0;
}

.indicator__item {
    display: inline-block;
    width: 7px;
    height: 7px;
    border: 2px solid #fff;
    border-radius: 100%;
}

.indicator__item--active {
    background-color: #fff;
}

.form-group {
    text-align: left;
    margin-bottom: 1rem;
}

.form-group--error {
    color: #EA614A;
}

.form-group .help-text {
    font-size: 0.9rem;
    margin: 0;
}

label {
    font-weight: 700;
}

input[type="text"], input[type="nunber"], input[type="tel"], input[type="email"], select, textarea {
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    outline: none;
    width: 100%;
    padding: 5px;
    color: #657F6F;
    border: 1px solid #ECDCAF;
    box-sizing: border-box;
    background-color: #fff;
}

input:focus, select:focus, textarea:focus {
    box-shadow: 0 0 5px #D3BFA0;
    border: 1px solid #D3BFA0;
}

input::placeholder, textarea::placeholder {
    color: #ECDCAF;
}

textarea {
    resize: none;
}

.form-group--error input[type="email"],
.form-group--error input[type="tel"],
.form-group--error input[type="number"],
.form-group--error input[type="text"]
{
    border-color: #EA614A;
    color: #EA614A;
}