/*
 * Copyright © 2026
 * Alvaton Holdings
 * Anthony Liberto
 * File: login.css
 * Project: AlVaTest
 * All rights reserved
 *
 * This source code is proprietary and confidential.
 * Redistribution or modification is prohibited without prior written consent.
 *
 */

body {
    margin: 0;
    /*min-height: 100vh;*/
    display: flex;
    flex-direction: column;
    /*background: #f8f9fb;*/
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.login-header {
    background: linear-gradient(90deg, #000000 0%, #e53935 50%, #1e88e5 100%);
    color: #fff;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(30, 136, 229, 0.08);
}

.login-footer {
    background: linear-gradient(90deg, #000000 0%, #e53935 50%, #1e88e5 100%);
    color: #fff;
    padding: 2rem 1rem;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(30, 136, 229, 0.08);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-logo {
    height: auto;
    max-width: 100%;
}

.page {
    /*width: min(520px, 100%);*/
    margin: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 1rem 1rem 1rem;
}

button {
    margin-top: 1rem;
}

.form-actions {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.form-actions button {
    margin-top: 0;
}

.action-link {
    color: #0a58ca;
    text-decoration: underline;
    cursor: pointer;
}

.result {
    margin-top: 1rem;
}

.modal {
    width: min(520px, 92vw);
}

