* {
    box-sizing: border-box;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.bg_area {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100vw;
    height: 100dvh;
    background-color: rgba(250, 250, 250, 1);
    background-image: url('images/Ducks Row Silhouette.svg');
    background-repeat: no-repeat;
    background-position: bottom;
}
.login_area {
    position: relative;
    z-index: 100;
    box-sizing: border-box;
    font-size: 16pt;
    color: black;
    width: 100vw;
    height: 100dvh;
    display: flex;
    flex-flow: column;
}
.login_things {
    margin: auto;
}
.login_row_title > img {
    width: 55px;
    height: 55px;
    margin-right: 2px;
}
.login_row_title > span {
    margin-top: 8px;
    font-size: 42px;
}
.login_main {
    margin: auto;
    width: 30vw;
    box-shadow: 12px 12px 12px rgba(0, 0, 0, 0.1), -12px -12px 12px white;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 25% 1fr;
    padding: 25px;
    gap: 15px;
}
.login_row_title {
    font-weight: 600;
    grid-column: span 2;
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    padding: 0px 0px 10px 0px;
}
.login_row_subtitle {
    font-weight: 600;
    grid-column: span 2;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    font-size: 18px;
    color: #999999;
}
.login_row_text {
    align-self: center;
    font-size: 12pt;
    padding: 5px;
}
.login_row_input {
    padding: 5px;
}
.login_row_input > input {
    outline: 0;
    border:0;
    background-color: rgba(245, 245, 245, 1);
    border: 1px solid rgb(227, 230, 232);
    font-size: 14pt;
    padding: 5px;
    border-radius: 5px;
    width: 100%;
}
.login_row_fail {
    padding: 5px;
    font-weight: 600;
    color: red;
    align-content: center;
}
.login_row_login {
    padding: 5px;
    display: flex;
    justify-content: right;
}
.block_button {
    vertical-align: top;
    background: rgba(30, 200, 30, 1);
    color: white;
    font-weight: bold;
    font-size: 16px;
    border: 0px;
    height: 46px;
    padding: 0px 30px 0px 30px;
    display: inline-block;
    border-radius: 10px;
/*     padding: 3px 25px 3px 25px; */
    cursor: pointer;
}
.block_button:hover {
    background: rgba(20, 220, 20, 1);
}
