/* Modern CSS Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
    background-color: #f8fafc;
    /* Light slate blue/grey */
    color: #1e293b;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


/* Layout */

.auth-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}

.auth-card {
    background: #ffffff;
    width: 100%;
    max-width: 420px;
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}


/* Typography & Header */

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.logo-icon {
    color: #2563eb;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

p {
    font-size: 0.875rem;
    color: #64748b;
}


/* Form Elements */

.input-group {
    text-align: left;
    margin-bottom: 1.5rem;
}

label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    color: #475569;
    margin-bottom: 0.5rem;
}

input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s;
}

input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

button {
    width: 100%;
    padding: 0.75rem;
    background-color: #2563eb;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

button:hover {
    background-color: #1d4ed8;
}

button:disabled {
    background-color: #94a3b8;
    cursor: not-allowed;
}


/* Status Messages */

.status-error {
    margin-top: 1rem;
    font-size: 0.8125rem;
    color: #dc2626;
    text-align: center;
}

.status-hidden {
    display: none;
}


/* Footer */

.site-footer {
    padding: 2rem;
    text-align: center;
    font-size: 0.75rem;
    color: #94a3b8;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
}

.footer-nav {
    margin-bottom: 0.5rem;
}

.footer-nav a {
    color: #64748b;
    text-decoration: none;
    margin: 0 0.75rem;
}

.footer-nav a:hover {
    text-decoration: underline;
}