﻿body {
    margin: 75px;
    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 {
    --cs-blue: rgb(32,83,155);
    --cs-dark-blue: rgb(20,53,97);
    --cs-light-blue-text: rgb(119,165,227);
    --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: rgb(244,244,244);
}

.login-form {
    margin:auto;
}

.login-button {
    background-color: rgb(32,83,155);
    color: white;
}
    .login-button:hover {
        background-color: rgb(20,53,97);
        color: rgb(119,165,227);
        font-weight: bold;
    }
.footer-text {
    color: rgb(119,165,227);
}