@font-face {
    font-family: 'Open Sans';
    font-weight: 300;
    src: url('/fonts/OpenSans-Light.ttf');
}

@font-face {
    font-family: 'Open Sans';
    font-weight: 400;
    src: url('/fonts/OpenSans-Regular.ttf');
}

@font-face {
    font-family: 'Open Sans';
    font-weight: 600;
    src: url('/fonts/OpenSans-SemiBold.ttf');
}

@font-face {
    font-family: 'Open Sans';
    font-weight: 700;
    src: url('/fonts/OpenSans-Bold.ttf');
}

@font-face {
    font-family: 'Open Sans';
    font-weight: 800;
    src: url('/fonts/OpenSans-ExtraBold.ttf');
}

@font-face {
    font-family: 'Tiempos';
    font-weight: 600;
    font-display: swap;
    src: url('/fonts/tiempos-headline-web-bold.woff2') format('woff2'), url('/fonts/tiempos-headline-web-bold.woff') format('woff');
}

body,html {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.page-wrapper {
    height: 100vh;
    display: flex;
}

.sidebar {
    width: 500px;
    background-color: #f9423a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-text-wrapper {
    font-family: Tiempos, serif;
    font-weight: 600;
    font-size: 75px;
    color: #ffffff;
 }

 .smaller-spacing {
    margin-top: -20px;
 }

.main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: calc(100% - 500px);
    font-size: 19px;
}

.login-form-wrapper {
    display: flex;
    flex-direction: column;
}

.formerly-text {
    margin-bottom: 30px;
    text-align: center;
    color: #a6093d;
}

.form-wrapper {
    margin-bottom: 20px;
}

.login-form-group {
    display: flex;
    flex-direction: column;
}

.login-form-group label {
    margin: 0 0 3px 10px;
    color: #333f48;
}

.form-input {
    border-radius: 20px;
    border: 1px solid lightgrey;
    padding: 5px 5px 5px 15px;
    font-size: 19px;
}

.login-input {
    margin-bottom: 10px;
}

.form-input:focus {
    outline: none;
    border: 1px solid lightgrey;
}

.whatsnew-text {
    margin-top: 35px;
    font-size: 13px;
    align-self: center;
}

.whatsnew-text a {
    font-size: 19px;
    text-decoration: none;
    color: #333f48;
}

.login-buttons-wrapper {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.reverse {
    flex-flow: row-reverse;
}

.button {
    border-radius: 20px;
    padding: 5px 30px;
    border: none;
    background-color: #f3f1f3;
    color: #333f48;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 19px;
}

.button:active, .button:focus {
    outline: 1px dotted #333f48;
}

.login-btn {
    margin-left: 20px;
    color: #ffffff;
    background-color: #f9423a;
}

.single-button {
    width: 200px;
    margin: 0;
}

.select-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #333f48;
}

.form-select {
    margin-top: 10px;
    width: 300px;
    height: 40px;
    font-size: 19px;
    font-family: 'Open Sans', sans-serif;
    padding-left: 5px;
    color: #333f48;
}

@media screen and (max-width: 1023px) {
    .sidebar {
        display: none;
    }

    .main {
        width: 100%;
    }
}

.alert.alert-danger {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    background: #cc4b4c;
    font-size: 14px;
    color: #fff;
    border: 0;
    box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}

.logged-out-wrapper {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}