#Login {
    height: 100vh; 
    background-color: white;
}

.nopadding {
    padding: 0 !important;
}

.nomargin {
    margin: 0 !important;
}
/* BEM */
.button--font-size {
    font-size: 15px;
}

.login__image {
    width: 100%;
    height: 100%;
    position: absolute;
}

.login__image__logo__spa {
    width: 5rem;
    margin: 20px;
}

.login__image__logo__coreplan {
    width: 10rem;
}

.login__images__logos {
    position: absolute;
    z-index: 1;
    display: block;
    bottom: 0;
    width: 100%;
}

/* LOGIN CONTENT */
.login__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20rem;
}

.login__images__logos__container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

/* FORM LOGIN */
.login__form__link__back {
    position: absolute;
    color: #00A7FF;
    margin: 20px;
}

.login__form__title {
    color: #567E97;
}

.login__form__label {
    font-size: 14px;
    color: #567E97;
    font-weight: 300;
}

.login__form__button {
    color: #FFF;
    background-color: #00A4FF;
    font-family: 'Roboto', sans-serif;
    font-weight: bold !important;
}

.login__alert {
    font-size: 14px;
    font-weight: 200;
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba
}

.login__form__link {
    font-size: 13px;
    font-family: 'Roboto', sans-serif;
}

/* BUTTONS LOGIN */
.login__btn {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 42px;
    border-radius: 5px;
    
    background-color: #F1F1F1;
}

.login__btn__title {
    color: #497F9A;
    letter-spacing: 0.2px;
    align-self: center;
    font-family: 'Roboto', sans-serif;
    font-weight: bold !important;
}

.login__btn:hover {
    box-shadow: 0 0 6px #4285f4;
    cursor: pointer;
}

.login__btn:active {
    background-color: #1669F2;
}

.login__input {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.login__input:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0,123,255,.25);
}
