﻿/* Authentication Pages (Sign Up, Login) */
.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background-color: #f9f6f0; /* Soft earthy background */
    min-height: calc(100vh - 200px); /* Fills the screen between header and footer */
}

.auth-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 450px;
}

    .auth-container h2 {
        text-align: center;
        margin-bottom: 10px;
        color: #c2410c;
        font-weight: bold;
    }

    .auth-container p.subtitle {
        text-align: center;
        margin-bottom: 30px;
        font-size: 0.9em;
        color: #666;
    }

.auth-form-group {
    margin-bottom: 20px;
}

    .auth-form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        font-size: 0.9em;
        color: #333;
    }

    .auth-form-group input {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 1em;
        transition: border-color 0.3s;
    }

        .auth-form-group input:focus {
            outline: none;
            border-color: #c2410c;
        }

.auth-submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #c2410c;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

    .auth-submit-btn:hover {
        background-color: #9a340a;
    }

.auth-links {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
}

    .auth-links a {
        color: #c2410c;
        text-decoration: none;
        font-weight: bold;
    }

        .auth-links a:hover {
            text-decoration: underline;
        }

/* Mobile Responsiveness */
@media (max-width: 576px) {
    .auth-wrapper {
        padding: 40px 15px;
    }

    .auth-container {
        padding: 30px 20px;
    }
}
