﻿body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}
:root {
    --hh-orange: rgb(215,122,0);
    --hh-dark-orange: rgb(170,69,0);
    --hh-light-salmon-text: rgb(215,171,148);
    --hh-light-orange-text: rgb(235,190,144);
    --hh-gray-1: rgb(244,244,244);
}
.login-logo {    
    display: block;
    padding:15px;
    margin: auto;
    max-width: 100%;
}
.login-form-label {   
    color:rgb(127,127,127);
    font-weight:bold;
}
.login-container {
    justify-content:center;
    background-color: var(--hh-gray-1);
}

.login-form {
    margin:auto;
}

.login-button {
    background-color:var(--hh-orange);
    color:white;
}
.login-button:hover {
    background-color: var(--hh-dark-orange);
    color: var(--hh-light-salmon-text);
    font-weight:bold;
}
.footer-text {
    color: rgb(235,190,144);
}