/* Bootstrap 5.3.6 subset — utilities, reboot and form components used by the login layout. */

*, *::before, *::after {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

label { display: inline-block; }
img, svg { vertical-align: middle; }

button, input, optgroup, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
button, select { text-transform: none; }
button { border-radius: 0; }
button:focus:not(:focus-visible) { outline: 0; }
[type=button], [type=reset], [type=submit], button {
    -webkit-appearance: button;
}
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
    cursor: pointer;
}
[role=button] { cursor: pointer; }
summary { display: list-item; cursor: pointer; }

h1 { font-size: calc(1.375rem + 1.5vw); }
h2 { font-size: calc(1.325rem + .9vw); }
h3 { font-size: calc(1.3rem + .6vw); }
h4 { font-size: calc(1.275rem + .3vw); }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

@media (min-width: 1200px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    h4 { font-size: 1.5rem; }
}

.d-none         { display: none         !important; }
.d-flex         { display: flex         !important; }
.d-inline-flex  { display: inline-flex  !important; }

.flex-column            { flex-direction: column      !important; }
.justify-content-center { justify-content: center     !important; }
.justify-content-end    { justify-content: flex-end   !important; }
.align-self-center      { align-self: center          !important; }
.gap-2                  { gap: .5rem                  !important; }

.w-100             { width: 100%          !important; }
.position-relative { position: relative   !important; }
.text-center       { text-align: center   !important; }
.fs-5              { font-size: 1.25rem   !important; }

.mt-2 { margin-top: .5rem  !important; }
.mt-3 { margin-top: 1rem   !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.me-0 { margin-right: 0    !important; }
.pt-1 { padding-top: .25rem !important; }

@media (min-width: 1200px) {
    .d-xl-block    { display: block             !important; }
    .flex-xl-row   { flex-direction: row        !important; }
    .me-xl-4       { margin-right: 1.5rem       !important; }
}

.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #dee2e6;
    border-radius: .375rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}
.form-control::placeholder {
    color: rgba(33, 37, 41, .75);
    opacity: 1;
}

.form-floating {
    position: relative;
}
.form-floating > .form-control {
    height: calc(3.5rem + 2px);
    min-height: calc(3.5rem + 2px);
    line-height: 1.25;
    padding: 1rem .75rem;
}
.form-floating > label {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    max-width: 100%;
    height: 100%;
    padding: 1rem .75rem;
    overflow: hidden;
    color: rgba(33, 37, 41, .65);
    text-align: start;
    text-overflow: ellipsis;
    white-space: nowrap;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity .1s ease-in-out, transform .1s ease-in-out;
}
.form-floating > .form-control::placeholder {
    color: transparent;
}
.form-floating > .form-control:focus,
.form-floating > .form-control:not(:placeholder-shown) {
    padding-top: 1.625rem;
    padding-bottom: .625rem;
}
.form-floating > .form-control:-webkit-autofill {
    padding-top: 1.625rem;
    padding-bottom: .625rem;
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-control:-webkit-autofill ~ label {
    transform: scale(.85) translateY(-.5rem) translateX(.15rem);
}

/* ---- end Bootstrap subset ---- */

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;
    margin: 0;
}

.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;
    }
}