/* Main Styles */
/* Copyright (c) 2024, Stills Media */

html, body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

body > div {
    flex: 1;
}

footer {
    background-color: #3B4252;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
}

h1 {
    font-weight: 800;
    margin: 0;
    font-size: 35px;
}

h1 span {
    font-weight: 700;
}

h2 {
    font-weight: 100;
    margin: 0;
    font-size: 20px;
}

p {
    font-size: 15px;
    font-family: "Roboto", Helvetica, Arial, sans-serif;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    font-size: inherit;
}

.cover {
    display: table-cell;
    vertical-align: middle;
    padding: 0 20px;
}

.header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 60px;
}

.btn-back {
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 300;
    font-size: 12px;
}

.btn-back i {
    margin-right: 8px;
}

.centered-div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    font-size: 10px;
    text-transform: uppercase;
}

.footer-left {
    text-align: left;
}

.footer-right {
    text-align: right;
}

.legal-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
    line-height: 1.2;
    text-align: center;
}

.legal-text a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: underline;
}

.legal-text a:hover {
    color: #ECEFF4;
}

.logo {
    margin-bottom: 20px;
}

.page-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ECEFF4;
    text-align: center;
}

.login-form {
    background-color: #3B4252;
    padding: 40px;
    border-radius: 8px;
    max-width: 400px;
    width: 100%;
}

.login-form h1 {
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 700;
    color: #ECEFF4;
    text-align: left;
}

.login-subtext {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
    line-height: 1.2;
}

.form-group label {
    color: #D8DEE9;
    font-size: 14px;
}

.form-control {
    background-color: #4C566A;
    border: none;
    color: #ECEFF4;
}

.form-control:focus {
    background-color: #4C566A;
    color: #ECEFF4;
    border-color: #4C566A;
    box-shadow: none;
}

.btn-login {
    background-color: #5D80AE;
    color: #ECEFF4;
    border: none;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    margin-top: 20px;
}

.btn-login:hover {
    background-color: #80A0C2;
}
