/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    overflow-y:scroll;
}

/* PAGE STRUCTURE */

html, body {
    height: 100%;
    margin: 0;
}

/* COLOR SYSTEM */

:root{
    --house-blue:#1f2a44;
    --house-gold:#c9a227;
    --house-parchment:#f5f1e6;
}

/* BODY */

.site-body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-size: 16px;
    line-height: 1.6;
    color: #2c2c2c;
    background:var(--house-parchment); /* parchment tone */
}

/* ==========================================================
   GLOBAL ELEMENTS
========================================================== */
a {
    color: #0077cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

button {
    cursor: pointer;
    font-family: inherit;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 10px;
}

.one {
    text-align: justify;
    line-height: 1.6;
}

p {
    margin-bottom: 15px;
}

strong {
    font-weight: 700;
}

.login-error{
    color:#b22222;
    text-align:center;
    margin-bottom:15px;
}

/* ==============================
   GLOBAL ALERTS
============================== */

.alert {
    padding: 10px 14px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 14px;
}

/* ERROR */
.alert-error {
    background: #fdecea;
    color: #b22222;
    border: 1px solid #e0b4b4;
}

/* SUCCESS */
.alert-success {
    background: #edf7ed;
    color: #2e7d32;
    border: 1px solid #b7dfb7;
}

/* INFO */
.alert-info {
    background: #eef4fb;
    color: #1f2a44;
    border: 1px solid #c7d7ef;
}