@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;500&display=swap');

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 300;
    box-sizing: border-box;
    background-color: #282f3a;
    color: #ffffff;
}

label {
    margin: 6px 0;
    display: block;
    text-align: left;
    font-weight: bold;
}

a {
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
}

.login-video {
    position: fixed;
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}
.flex-center {
    display: flex;
    justify-content: center;
    width: 100%;
}

.container {
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    text-align: center;
    height: 100vh;
}

.login-logo {
    margin-top: 10vh;
    margin-bottom: 5vh;
}
.login-logo img {
    height: 150px;
}

.login-wrapper{
    width: 377px;
}
.login-wrapper p {
    font-size: 20px;
}

.footer{
    font-size: 10px;
    padding: 30px 0;
}

.btn {
    width: 100%;
    height: 50px;
    text-transform: uppercase;
    text-align: center;
    border: 0;
    box-sizing: border-box;
    outline: none;
    background: rgb(28 33 42 / 60%) 0% 0% no-repeat padding-box;
    margin: 10px 0;
    color: #ffffff;
    display: flex;
    align-items: center;
    cursor: pointer;
    border: 1px solid rgba(0, 221, 255, 0.2);
}
.btn:hover {
    background-color: #ffffff;
}
.btn:hover *:last-child {
    color: #000000;
}

.btn *:last-child {
    flex: 1;
    background-color: transparent;
    border: 0;
    color: #ffffff;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 100%;
    font-size: 12px;
}
.btn a {
    font-size: 14px;
    font-weight: inherit;
}

input[type="email"], input[type="password"] {
    height: 35px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    outline: none;
}
input.not-valid {
    outline: auto;
    outline-color: red;
    color: red;
}
.btn.disabled {
    opacity: 0.5;
}

.logo-session {
    background-image: url("/api/assets/ow_login_icons.svg");
    width: 30px;
    height: 29.5px;
    margin: 10px 15px;
    background-size: 229px 229px;
    position: absolute;
}
.logo-session.microsoft {
    background-position-y: -29px;
}
.logo-session.apple {
    background-position-y: -58px;
}
.logo-session.other {
    background-position-y: -86.8px;
}
.logo-session.support {
    background-position-y: -115.4px;
}
.logo-session.okta {
    background-position-y: -144.5px;
}
.btn:hover .logo-session {
    background-position-x: -29px;
}

@media screen and (max-width: 720px) {
    .login-logo {
        margin: 50px;
    }
}