#oaw-login-body {
    display: grid;
    grid-template-columns: 1fr minmax(auto, 300px) 1fr;
    grid-template-rows: 55px 1fr auto;
    gap: 20px;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-y: scroll;
}

#oaw-login-header {
    grid-column: 1 / span 3;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #111;
    color: white;
}

#oaw-login-main {
    grid-column: 2;
}

#oaw-login-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 auto;
    font-family: 'Source Sans 3', sans-serif;
}

#oaw-login-wrap p {
    font-family: 'Source Sans 3', sans-serif;
}

#oaw-login-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-sizing: border-box;
    padding: 20px;
    border: solid lightgray 1px;
}

#oaw-login-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#oaw-login-form label {
    display: block;
    font-size: 14px;
}

#oaw-login-form input {
    width: 100%;
    height: 25px;
    box-sizing: border-box;
}

#oaw-login-form-subscribe-label {
    display: flex;
    margin-right: auto;
    gap: 10px;
    align-items: center;
    cursor: pointer;
}

#oaw-login-form input[type="checkbox"] {
    height: 15px;
    width: 15px;
    cursor: pointer;
}

#oaw-login-form > p.login-remember {
    display: flex;
    flex-basis: content;
}


#oaw-login-form > p.login-remember > label {
    display: flex;
    flex-basis: content;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

#oaw-login-form input[type="submit"] {
    height: 30px;
    border: none;
    border-radius: 3px;
    background-color: #111;
    color: white;
    cursor: pointer;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

#oaw-login-form input[type="submit"]:hover {
    background-color: #333;
}