/*
Copyright © 2026 Maximilian Gorman. All rights reserved.
Unauthorized copying, modification, distribution, or use is prohibited without prior written permission.
*/

/* admin-style.css */

body {
    font-family: Arial, sans-serif;
    background: #1e1e1e;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}


.login-container {
    background: #2c2c2c;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    text-align: center;
    width: 400px;
}


.login-container h2 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.login-container input {
    width: 94%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 4px;
}

.login-container button {
    width: 100%;
    padding: 0.8rem;
    background: #28a745;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s ease;
}

.login-container button:hover {
    background: #218838;
}

#errorMsg {
    color: #ff4d4f;
    margin-top: 10px;
}
