@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,700&display=swap');

* {
    font-family               : 'Open Sans', sans-serif;
    font-weight               : 400;
    box-sizing                : border-box;
    margin                    : 0;
    padding                   : 0;
    outline                   : none !important;
    text-decoration           : none;
    list-style                : none;
    -webkit-overflow-scrolling: touch;
}

*::selection {
    color     : white;
    background: #28AFB9;
}

.azure_ad__login {
    display: flex;
    width  : 100%;
    height : 100vh;
}

.azure_ad__login__form {
    display       : flex;
    flex-direction: column;
    width         : 50%;
    padding       : 1.5rem 2rem;
}

.azure_ad__login__form__header img {
    height: 30px;
}

.azure_ad__login__form__content {
    display        : flex;
    flex-direction : column;
    justify-content: center;
    align-items    : center;
    flex           : 1;
}

.azure_ad__login__form__title {
    font-size     : 1.5rem;
    text-transform: uppercase;
}

.azure_ad__login__form__app_name {
    font-size     : 3rem;
    font-weight   : bold;
    text-transform: uppercase;
    line-height   : 1;
}

.azure_ad__login__form__button {
    transition    : background ease-in-out 0.3s;
    width         : 200px;
    text-align    : center;
    text-transform: uppercase;
    padding       : 0.5rem 1rem;
    margin        : 3rem 0 2.5rem;
    border        : 0;
    border-radius : 4px;
    background    : #28AFB9;
    color         : white;
    box-shadow    : 0 2px 8px 0 #00000020
}

.azure_ad__login__form__button:hover {
    background: #18959e;
    color     : white;
}

.azure_ad__login__form__help_text {
    font-style: italic;
    text-align: center;
    max-width : 400px;
}

.azure_ad__login__form__footer {
    text-align: right;
}

.azure_ad__login__cover {
    width              : 50%;
    background-size    : cover;
    background-position: center;
    position           : relative;
}

.azure_ad__login__cover::after {
    content   : '';
    position  : absolute;
    top       : 0;
    left      : 0;
    width     : 100%;
    height    : 100%;
    background: linear-gradient(to left, #28AFB9 , #0c7e86);
    opacity   : 0.6;
    z-index   : 1;
}

@media (max-width: 950px) { 
    .azure_ad__login__cover {
        display: none;
    }

    .azure_ad__login__form {
        width: 100%;
    }
}