body {
    color: rgba(0, 0, 0, 0.87);
    font-family: Helvetica, sans-serif;
    line-height: 1.5rem;
    background-color: #EDF0F3;
    display: flex;
    align-items: center;
    height: 100vh;
}

.login-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 80px 24px;
    width: 100vw;
    height: 100%;
    max-height: 1000px;
    min-width: 400px;
}

.login-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 64px 48px;
    background-color: #FFF;
    width: 100%;
    margin-right: 24px;
    max-width: 800px;
    height: 100%;
    overflow-y: auto;
    min-height: 400px;
}

.login-panel .logo {
    height: 48px;
}

.login-image-panel {
    aspect-ratio: 1;
    max-height: 100vh;
    max-width: calc(100vw - 520px);
}

.login-panel, .login-image-panel, .login-image-panel * {
    border-radius: 16px;
}

#robaws-slideshow {
    display: none;
    line-height: 0;
}

@media only screen and (min-width: 1200px) {
    .login-wrapper {
        padding: 80px 48px;
    }

    #robaws-slideshow {
        display: block;
    }
}

.login-panel form {
    width: 100%;
}

.form-group {
    width: 100%;
    padding: 0 0 10px 0;
}

.form-input {
    padding: 2px 5px;
    width: 100%;
    height: 1.275rem;
    font-size: 1rem;
    border-radius: 4px;
    border-color: #ddd;
    border-width: 1px;
    border-style: solid;
    height: 40px;
}

.form-input:focus {
    outline: none;
    box-shadow: 0 1px 0 0 rgb(62, 124, 191);
}

.button-primary {
    background-color: #3E7CBF;
    border-radius: 4px;
    color: #fff;
    width: 100%;
    height: 40px;
    transition: background-color .5s ease-in-out;
    border: none;
    outline: none;
}

.button-primary:hover {
    background-color: #27B4AF;
}

.error-message {
    color: #ff6f00;
}

.notification {
    color: white;
    padding: 10px;
    margin-top: 10px;
    border-radius: 8px;
}

.notification-warning {
    background-color: #fb8c00 !important;
}

.notification-info {
    background-color: #43A047 !important
}

.notification-danger {
    background-color: #FF5252 !important
}

a:link, a:visited, a:active {
    color: rgb(62, 124, 191);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.notification a:link, .notification a:visited, .notification a:active {
    color: #efefef;
}

.links {
    padding-top: 10px;
}

.links>span:not(:first-of-type) {
    padding-left: 10px;
}

.links>span:not(:first-of-type)::before {
    content: "•";
    display: inline;
    padding-right: 10px;
    color: #3E7CBF;
}

    @media only screen and (max-height: 900px) {
    .login-wrapper {
        padding: 48px;
    }

    .login-panel {
        padding: 48px;
    }

    .login-panel .logo {
        height: 32px;
    }

    .login-panel h1 {
        font-size: 2rem;
        margin-bottom: .5rem !important;
    }
}
@media only screen and (max-height: 700px) {
    .login-wrapper {
        padding: 24px 48px;
    }
}