/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f5f2eb;
    color: #ffffff;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a.logo {
    text-decoration: none;
    color: inherit;
}

a.underline {
    text-decoration: underline;
    color: inherit;
    margin-top: 14px;
    display: block;
    text-transform: uppercase;
}

/* =========================
   HERO
========================= */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.12) 0%,
        rgba(0, 0, 0, 0.08) 30%,
        rgba(0, 0, 0, 0.15) 100%
    );
    z-index: 1;
}

.hero-header,
.hero-content, .hero-footer {
    position: relative;
    z-index: 2;
}

section.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: calc(100vh - 140px);
}

h1 {
    font-family: 'arial';
    font-size: 3.5em;
    font-weight: 600;
}

.home-button-container {
    margin-top: 15px;
}

.home-button {
    background-color: rgb(0, 0, 0, 0.50);
    padding: 5px;
    border-radius: 5px;
    color: white;
}

.success-message {
    text-align: center;
    padding: 5px;
    border: 1px solid rgb(58, 184, 58);
    border-radius: 5px;
}

.danger-message {
    text-align: center;
    padding: 5px;
    border: 1px solid red;
    border-radius: 5px;
}

.form-message {
    text-align: center;
    padding: 5px;
}

.logout-form {
    position: absolute;
    top: 5px;
    left: 5px;
    background-color: rgb(0, 0, 0, 0.50);
    padding: 5px;
    border-radius: 5px;
}

.form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(0, 0, 0, 0.50);
    padding: 15px;
    border-radius: 5px;
}

.form .form-input-container {
    margin-top: 5px;
}

.form .form-input-container > input {
    border-radius: 5px;
    border: none;
    padding: 5px;
}

.form-button-container {
    margin-top: 15px;
    text-align: center;
}

.form-button {
    padding: 5px;
    background-color: white;
    border: none;
    border-radius: 5px;
}

/* =========================
   HEADER / FOOTER
========================= */
.hero-header, .hero-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 0;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #ffffff;
}

a.logo img {
    max-width: 250px;
    position: relative;
    top: 35px;
}

footer span.hero-span {
    position: relative;
    bottom: 70px;
    font-size: 18px;
    font-weight: 700;
}

/* =========================
}