/*CONTAINERS*/

section#wrapper {
    background            : url(../../../img/bg/main_bg.png) no-repeat;
    background-size       : cover;
    padding: 4em 0;
}

.wrapper__inner {
    position  : relative;
    width     : 100%;
    max-width : var(--default-container-max-width);
    margin    : 0 auto;
}

#main {
    max-width       : 100%;
    min-height      : 50vh;
    display         : flex;
    flex-direction  : column;
    justify-content : center;
    align-items     : center;
    padding         : .75rem 0;
}

#main > * {
    width     : 100%;
    margin    : 0;
    max-width : 600px;
}

/*ELEMENTS*/

body#authentication .card {
    background: transparent;
}

/*TITLE*/

body#authentication .page-header h1 {
    display: none;
}

/*FORM*/

.wrapper__forms {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 0.5em;
}

.wrapper__forms form {
    flex: 0 0 45%;
    background: white;
    padding: 2em;
    margin-bottom: 2em;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    border-radius: 11px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .05);
}

.wrapper__forms form h2 {
    border-bottom: 1px solid black;
    padding-bottom: 0.5em;
    text-align: center;
}

.wrapper__forms form  span.form__title {
    font-size: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
    text-transform: uppercase;
    font-weight: 500;
}

.already__exist {
    border: 1px solid red;
    padding: 0.5em;
}

.already__exist span {
    color: red;
}

.wrapper__forms form p.form__title__section {
    color: black;
    font-size: calc(12px + (13 - 12) * ((100vw - 320px) / (1920 - 320)));
}

.wrapper__forms .form-group {
    margin: 0 0 0.8em;
}

.wrapper__forms .form-control-comment {
    padding-top: 0;
}

#SubmitCreate {
    margin: auto;
    display: flex;
}

.forgot-password a {
    font-size: calc(12px + (13 - 12) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 600;
    color: var(--main-red-color);
}

.forgot-password a:hover {
    color: var(--second-red-color);
}

.form-footer {
    text-align : center;
}

/*CREATE ACCOUNT*/

form#account-creation-form {
    background: white;
    border-radius: 11px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .05);
    padding: 2em;
}

section.login-form h1 {
    background: white;
    margin: 0;
    padding: 2em 0 0.5em 0;
    text-transform: uppercase;
    font-weight: 500;
    border-bottom: 1px solid black;
}

section.form__creation__account__section {
    padding-top: 1em;
}

section.form__creation__account__section p i {
    color: red;
    font-size: 8px;
    vertical-align: text-top;
}
