.flex-container-col {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.flex-container-row {
    display: flex;
    flex-direction: row;
}

.login-logout-wrapper {
    margin: auto;
    border-radius:10px;
    padding:20px 30px;
    display: block;
}

.login-logout-logo-wrapper {
    padding-bottom: 64px;
    text-align: center;
}

.login-logout-logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.login-logout-box {
    background: #FFFFFF;
    border: 1px solid #E9ECEF;
    border-radius: 4px;
    width: min-content;
    min-width: 400px;
    margin-left: auto;
    margin-right: auto;
    padding: 24px 28px 24px 28px;
}

.login-logout-box p {
    margin-bottom: 1rem;
}

.login-options {
    display: flex;
    gap: 8px;
    width: min-content;
}

.login-option {
    cursor:pointer;
    border-radius: 4px;
    font-family:arial;
    font-size:15px;
    font-weight:bold;
    text-decoration:none;
    width: 144px;
    height: 40px;
    background: #FFFFFF;
    border: 1px solid #DEE2E6;
    box-shadow: none;
    text-shadow: none;
}

.login-logout-wrapper .button-blue,
.login-options button:first-of-type {
    background:rgba(13, 110, 253, 1) !important;
    color: white !important;
    position: relative;
}

button.login-option.button-blue:after,
.login-options button:first-of-type:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 0;
    height: 0;
    border-top: solid 8px rgba(13, 110, 253, 1);
    border-left: solid 8px transparent;
    border-right: solid 8px transparent;
}

.login-logout-wrapper .button-blue:hover,
.login-logout-wrapper .button:first-of-type:hover {
    background:rgba(13, 110, 253, 0.92) !important;
}

.login-logout-wrapper .button:first-of-type:hover:after {
    border-top-color: rgba(13, 110, 253, 0.92);
}

.login-heading {
    font-size: 22px;
    margin-top: 46px;
    margin-bottom: 0px;
    color:rgba(3, 22, 51, 1);
}

.login-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #343A40;
    margin-top: 8px;
}

.login-fields {
    margin-top: 16px;
    margin-bottom: 24px;
}

.login-input {
    border: 1px solid #CED4DA;
    border-radius: 4px;
    width: 288px;
    height: 40px;
    cursor: pointer;
    margin-top:4px;
}

.login-button {
    padding: 16px 24px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    width: fit-content;
    border: 1px solid #DEE2E6;
    cursor: pointer;
}

.login-options input[type="radio"] {
    opacity: 0;
    position: fixed;
    width: 0;
}

.login-options label {
    display: flex;
    cursor:pointer;
    border-radius: 4px;
    font-family:arial;
    font-size:15px;
    font-weight:bold;
    text-decoration:none;
    width: 144px;
    height: 40px;
    background: #FFFFFF;
    border: 1px solid #DEE2E6;
    box-shadow: none;
    text-shadow: none;
    justify-content: center;
    align-items: center;
    color: #495057;
}

.login-options input[type="radio"]:checked + label {
    background: rgba(13, 110, 253, 1) !important;
    border: 1px solid #DEE2E6;
    color:  white !important;
    position: relative;
    box-sizing: border-box;
}

.login-options input[type="radio"]:checked + label::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 0;
    height: 0;
    border-top: solid 8px rgba(13, 110, 253, 1);
    border-left: solid 8px transparent;
    border-right: solid 8px transparent;
}

.login-options input[type="radio"]:checked + label:hover {
    background:rgba(13, 110, 253, 0.92) !important;
}
