body {
    margin: 0;
    background-color: #e0e0e0;
}

.page {
    display: flex;
    height: 100vh;
    min-height: 700px;
    position: relative;
}

.wrapper {
    height: 100%;
    width: 100%;
    position: relative;
}

.page-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10vh;
    left: 15vw;
    right: 15vw;
    bottom: 10vh;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 20px 50px 2px #e0e0e0;
}

.page-container__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.page-container__left {
    border-radius: 6px 0 0 6px;
    background: #f6f6f6;
    flex: 1;
}

.page-container__right {
    flex: 2;
}

.logo {
    width: 100%;
    max-width: 10rem;
}

.panel-body {
    width: 18rem;
    margin: auto;
}

@media screen and (max-width: 576px) {
    .page-container {
        right: 5vw;
        left: 5vw;
        bottom: auto;
        top: 5vw;
    }
}

@media screen and (max-width: 768px) {
    .page {
        min-height: 150px;
    }

    .page-container {
        top: 15%;
        flex-direction: column;
        justify-content: flex-start;
        max-height: max-content;
        bottom: auto;
    }

    .page-container__content {
        width: 100%;
        height: auto;
        flex: none;
    }

    .page-container__left {
        border-radius: 6px 6px 0 0;
    }

    .row {
        width: 90%;
    }

    .panel-body {
        width: 100%;
    }
}

.custom-icon .form-control {
    padding-left: calc(1.5em + .75rem + 2px);
}

.custom-icon .form-control-feedback {
    position: absolute;
    z-index: 2;
    width: calc(1.5em + .75rem + 2px);
    height: calc(1.5em + .75rem + 6px);
    line-height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    color: #aaa;
}

.login-additional-fields {
    display: none;
}