/*!
 * settings & fonts
 */
@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 400;
    src: url(./fonts/roboto-regular.eot) format("eot"), url(./fonts/roboto-regular.woff) format("woff"), url(./fonts/roboto-regular.ttf) format("truetype"), url(./fonts/roboto-regular.svg#RobotoRegular) format("svg")
}

@font-face {
    font-family: Roboto Medium;
    font-style: normal;
    font-weight: 500;
    src: url(./fonts/roboto-500.eot) format("eot"), url(./fonts/roboto-500.woff) format("woff"), url(./fonts/roboto-500.ttf) format("truetype"), url(./fonts/roboto-500.svg#RobotoMedium) format("svg")
}

html, .body {
    background-image: linear-gradient(45deg, #084a98, #3366cc);
    background-image: -moz-linear-gradient(45deg, #084a98, #3366cc);
}

.body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    width: 100%;
    height: 100%;
    font-family: Catamaran, Roboto, "Helvetica Neue", sans-serif;
    margin: 0;
}

.body:after {
    content: '';
    min-height: inherit;
    font-size: 0;
}

.logo {
    width: 350px;
    margin-top: -5%;
}

.container {
    background: white;
    padding: 35px;
    border-radius: 4px;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    max-width: 380px;
    box-sizing: border-box;
}

.title {
    color: #3366cc;
    margin: 0 0 0.67em 0;
    font-size: 28px;
}

.text {
    width: 100%;
    font-size: 14px;
    margin-block-end: 1em;
}

@media only screen and (max-width: 600px) {
    .container {
        border-radius: 0;
    }

    .logo {
        width: 250px;
    }
}

