﻿/* Page centering */
.login_page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    background-image: url("/images/login_background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(48, 48, 48,0.3);
    background-blend-mode: overlay;
}

.login_box {
    border-radius: 15px;
    background: #f0f0f0;
    border-color: #0a0d08;
    border-width: 1px;
    padding: 25px;
    box-shadow: 5px 5px 10px 5px #121212;
}

.login_box h2
{
    align-content:center;
}

.form_field
{
    align-content:baseline center;
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
}

    .form_field input {
        padding: 8px;
        border-radius: 10px;
        border-width: 1px;
        border-color: #0a0d08;
        width: 100%;
        border-color: #969696;
    }

.login_btn {
    border-radius: 10px;
    width: 100%;
    background: #314d25;
    border-width: 0px;
    color: white;
    font-weight:500;
    height:50px;
    margin-top:15px;
}

    .login_btn:hover {
        background: #213619;
    }

.form_actions {
    display: flex;
    margin-top: 25px;
    align-content: center;
    justify-content: center;
    align-items: center;
}

    .form_actions a {
        color: #222a45;
        text-decoration: none;
        font-weight: 500;
    }

        .form_actions a:hover {
            text-decoration: underline;
        }

.divider {
    color: ##222a45;
    margin-left: 10px;
    margin-right: 10px;
}