/*
 * File:        /css/login.css
 * Description: Login styles for the NDT Financial Reporting System.
 * Author:      Iain Daddy
 * Copyright:   (c) 2025 Iain Daddy. All rights reserved.
 * License:     Internal Use Only
 * Version:     1.0.0
 * LastUpdated: 2025-07-12
 * Tags:        finance, CMS, reports, income, admin, layout, styles
 *
 * Notes:
 * - Central stylesheet used by /index.php interfaces.
 * - Indexed for Recoll metadata search.
 *
 * Change Log:
 * - 2025-07-03: Header added and file reviewed.
 *
 * Security Reviewed: ✅ Static content only
 */

body {
    font-family: Arial, sans-serif;
    background: #f2f2f2;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
}

.page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding: 2rem 1rem;
    gap: 2rem;
}

.top-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
}

.login-container {
    background: #fff;
    padding: 2rem 3rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.login-container img {
    max-height: 80px;
    margin-bottom: 1rem;
}

.login-container input {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
    padding: 0.5rem;
    font-size: 1rem;
}

.login-container button {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    background-color: #0078d4;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.login-container button:hover {
    background-color: #005fa3;
}