﻿html, body {
    margin: 0;
    height: 100%;
    font-size: 100%;
    line-height: 1.5em;
    color: #333;
    font-family: "Gibson-Regular",sans-serif;
}

a {
    color: #1d447e;
}

fieldset {
    border: 0;
    padding: 0;
}

h1 {
    color: #1d447e;
    font-size: 41px;
    font-weight: normal;
    line-height: 1.2;
}

input {
    border-radius: 4px;
    border: solid 1px #d0d0d0;
    background-color: #ffffff;
    box-sizing: border-box;
}

.form {
    width: 53%;
    padding: 32px;
    background-color: white;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
}

.column {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-box {
    display: flex;
    flex-direction: column;
}

.input-field {
    margin-bottom: 16px;
}

.input-field input {
    height: 40px;
    width: 100%;
    flex-grow: 0;
    padding-left: 16px;
}

.input-field label {
    font-weight: bold;
}

.input-field-checkbox {
    display: flex;
    flex-direction: row;
    margin-bottom: 32px;
}

.input-field-checkbox input {
    min-height: 24px;
    min-width: 24px;
    margin: 0;
    margin-right: 8px;
}

.input-field-checkbox label {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.submit-field {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 31px;
}

.form-footer {
    border-top: solid 1px #d0d0d0;
    padding-top: 16px;
}

.login-image {
    background-image: url("refs/image-login.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.logo {
    position: absolute;
    margin-left: 32px;
    margin-top: 20px;
    height: 53px;
    width: 140.8px;
    background-image: url("refs/logo.svg");
    cursor: pointer;
}

.btn {
    width: 97px;
    height: 44px;
    border-radius: 3px;
    background-color: #265daf;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    margin-right: 25px; 
    border: 0;
}

.athlon-grey {
    color: #808080;
    margin-right: 14px;
}


@media only screen and (max-width: 48em) {
    /* For mobile phones: */
    .column {
        width: 100%;
        background: linear-gradient(rgba(255,255,255,.3), rgba(255,255,255,.3)), url("refs/image-login.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .login-image {
        display: none;
    }

    h1 {
        color: #1d447e;
        font-size: 24px;
        font-weight: normal;
        line-height: 1.2;
    }

    .input-field {
        margin-bottom: 8px;
    }

    .input-field-checkbox, .submit-field {
        margin-bottom: 16px;
    }

    .logo {
        margin-left: 4px;
        margin-top: 0px;
    }

    .input-field-checkbox label {
        font-size: 10px;
    }
}