﻿/*Author: Ludwig Strömbäck*/
.login-page {
    height: 100vh !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f7f2e9;
    overflow: hidden !important;
}

.login-card {
    width: 100%;
    max-width: 360px;
    padding: 48px 32px;
    text-align: center;
}

.login-title {
    font-family: "Bodoni Moda", serif;
    font-weight: 400;
    font-size: 60px;
    line-height: 1;
    color: #000000;
    margin-bottom: 32px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    .login-form input {
        font-family: "Lora", serif;
        font-size: 18px;
        background-color: #ffffff;
        color: #000000;
        padding: 14px 16px;
        border-radius: 4px;
        border: 1px solid rgba(0,0,0,0.2);
        text-align: center;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

        .login-form input:focus {
            outline: none;
            border-color: #495846;
            box-shadow: 0 0 0 2px rgba(73, 88, 70, 0.25);
        }

    .login-form button {
        margin-top: 16px;
        font-family: "Lora", serif;
        font-size: 16px;
        background-color: #495846;
        color: #ffffff;
        border: none;
        padding: 12px;
        cursor: pointer;
        width: 100%;
    }

        .login-form button:hover,
        .login-form button:focus,
        .login-form button:active {
            background-color: #495846;
            color: #ffffff;
            outline: none;
        }

.login-error {
    margin-top: 12px;
    color: #b00020;
    font-family: "Lora", serif;
    font-size: 16px;
}

header {
    display: none;
}

footer {
    display: none;
}

html, body {
    height: 100%;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

main {
    padding: 0 !important;
    margin: 0 !important;
    height: 100vh !important;
}
