/* gotham-bold */
@font-face {
    font-family: 'gotham-bold';
	src: url('../font/Gotham-Bold.ttf');
}

/* gotham-book */
@font-face {
    font-family: 'gotham-book';
	src: url('../font/Gotham-Book.ttf') format("truetype");
}

/* gotham-medium */
@font-face {
    font-family: 'gotham-medium';
	src: url('../font/Gotham-Medium.ttf');
}

/* gotham-black */
@font-face {
    font-family: 'gotham-black';
    src: url('../font/Gotham-Black.ttf');
}

* {
	box-sizing: border-box;
}

html, body {
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
}

html {
	font-size: 62.5%;
}

.main_layout {
    display: flex;
    flex-direction: column;
    max-width: 300px;
}

#kc-page-title {
    font-family: 'gotham-medium';
    font-size: 2.3rem;
    text-align: center;
    color: #003656;
}

#kc-content-wrapper {
    text-align: center;
}

.minimal_form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form_options {
    margin-top: 50px;
    text-align: center;
}

.form_input_type_text {
    height: 30px;
    width: 220px;
    border: 1px solid #003656;
    font-family: 'gotham-book';
    font-size: 1.2rem;
    color: #003656;
    margin: 5px 0 5px 0;
    padding: 0 10px 0 10px;
}

.form_input_type_username {
    padding: 0 10px 0 30px;
    background-image: url('../img/page_connexion_compte_utilisateur.svg');
    background-repeat: no-repeat;
    background-position: 10px 7px;
    background-size: 12px auto;
}

.button {
    display: inline-block;
    background-color: #009EE0;
    color: #FFFFFF;
    font-family: 'gotham-book';
    text-transform: uppercase;
    font-size: 1.2rem;
    text-decoration: none;
    margin: 10px 0;
    border: 1px solid #009EE0;
    text-align: center;
    padding: 10px;
    width: 100%;
}

.button:hover {
    background-color: #FFFFFF;
    color: #009EE0;
    border: 1px solid #009EE0;
    cursor: pointer;
}

.arrow-button {
    background-image: url('../img/fleche_blanche_droite.svg');
    background-repeat: no-repeat;
    background-position: right 10px top 10px;
    background-size: 15px auto;
    padding: 10px 40px 10px 10px;
}

.arrow-button:hover {
    background-image: url('../img/fleche_bleu_droit.svg');
}

.form_options a {
    font-family: 'gotham-medium';
    color: #003656;
    text-decoration: underline;
}

.info {
    color: #009EE0;
    font-family: 'gotham-book';
    font-size: 1.2rem;
    text-align: center;
}

.action_wrapper {
    display: flex;
    flex-direction: column;
}

.message_wrapper {
    max-width: 300px;
}

.body {
    display: flex;
    flex-direction: column;
}

.content {
    flex-grow: 1;
    border-right: 3px solid #009EE0;
    min-height: 500px;
}

.header {
    display: flex;
    align-items: flex-end;
    min-height: 150px;
}

.left-wire {
    height: 36px;
    border-top: 3px solid #009EE0;
}

.logo {
    height: 150px;
    width: 188px;
    background-image: url('../img/page_connexion_logo.svg');
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: auto 150px;
}

.right-wire {
    height: 36px;
    border-top: 3px solid #009EE0;
    border-right: 3px solid #009EE0;
    flex-grow: 1;
}

.content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 186px;
}

/** MOBILE **/
@media (max-width: 1240px) {

    .left-wire {
        width: 5%;
    }

    .right-wire {
        margin-right: 5%;
    }

    .content {
        margin: 0 5%;
    }
}

/** DESKTOP **/
@media (min-width: 1241px) {

    .left-wire {
        width: 112px;
    }

    .right-wire {
        margin-right: 300px;
    }

    .content {
        margin: 0 300px;
    }
}