/* css/style.css */

/* --- Variable Definitions --- */
:root {
    --primary-color: #00509E; /* A professional blue */
    --secondary-color: #FF7F11; /* A vibrant orange for accents */
    --light-gray: #f8f9fa;
    --dark-text: #333;
    --light-text: #fff;
    --white-bg: #fff;
    --border-color: #dee2e6;
}

/* --- General Body and Font Styles --- */
body {
    background-color: var(--light-gray);
    color: var(--dark-text);
    font-family: 'DM Sans', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- Header & Footer (to match index.html) --- */
.header-bg {
    background-color: var(--light-gray);
    border-bottom: 1px solid var(--border-color);
}

.slogan {
    color: var(--primary-color);
    font-style: italic;
    font-size: 1.2rem;
}

.hero-title {
    color: var(--primary-color);
}

.site-footer {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 20px 0;
    margin-top: auto; /* Pushes footer to the bottom */
}

.site-footer a {
    color: var(--light-text);
    text-decoration: underline;
}

/* --- Authentication Form Container --- */
.auth-container {
    max-width: 480px;
    width: 100%;
    margin: 4rem auto;
    padding: 2.5rem;
    background-color: var(--white-bg);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header img {
    height: 80px;
    width: 80px;
    margin-bottom: 1rem;
}

.auth-header h1 {
    font-size: 1.75rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* --- Form and Button Styles --- */
.form-floating label {
    color: #6c757d;
}

.btn-custom {
    background-color: var(--secondary-color);
    color: var(--light-text) !important;
    border: none;
    padding: 12px 25px;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-custom:hover {
    background-color: #e66a00;
    transform: translateY(-2px);
}

/* --- Link to Switch Between Login/Sign-up --- */
.switch-auth-link {
    text-align: center;
    margin-top: 1.5rem;
}

.switch-auth-link a {
    color: var(--secondary-color);
    font-weight: 500;
    text-decoration: none;
}

.switch-auth-link a:hover {
    text-decoration: underline;
}