﻿body {
    margin-top: 100px;
    background-color: cornsilk;
}

.login {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 152px);
    max-height: calc(100vh - 152px);
    background-color: cornsilk;
}

.page-header {
    background-color: cornsilk;
    display: block;
    font-size: 32pt;
    text-align: center;
}

.page-wrapper {
    background: #fddf89;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    max-width: 600px;
    max-height: 600px;
    font-size: 1.3em;
}

.login-wrapper {
    max-width: 400px;
    margin: 0 auto;
}

    .login-wrapper label {
        display: block;
        margin-bottom: 0.5rem;
        margin-right: 5px;
    }

    .login-wrapper input {
        display: block;
        width: 68%;
        margin-bottom: 0.5rem;
    }

.login-button {
    width: 100%;
    padding: 0.75rem;
    background-color: #0078D4;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

.forgot-link {
    display: block;
    margin-top: 1rem;
    color: #0078D4;
    text-decoration: underline;
    cursor: pointer;
}

.error-message {
    margin-top: 1rem;
    color: red;
    font-weight: bold;
    display: block;
}

.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    justify-content: flex-start;
}

.form-label {
    width: 150px;
    margin-right: 10px;
    font-weight: bold;
    text-align: right;
}

.form-control {
    flex: 1;
    padding: 6px 10px;
    font-size: 14px;
    box-sizing: border-box;
    max-width: 400px;
}