.auth-page {
    padding: 120px 20px 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: transparent;
}

.auth-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    width: 100%;
    max-width: 900px;
}

.auth-form-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    z-index: 1;
    width: 100%;
    max-width: 400px;
    flex-grow: 1;
}

.auth-form h2 {
    font-family: "Playwrite AU QLD", cursive;
    font-size: 2.5rem;
    color: #1a4a6e;
    text-align: center;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
    font-weight: 600;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: "Libertinus Mono", monospace;
}

.auth-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: black;
    background-color: #e5be26;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.auth-btn:hover {
    background-color: #f0c93e;
}

.form-switcher {
    text-align: center;
    margin-top: 25px;
    font-size: 0.95rem;
    color: #555;
}

.form-switcher a {
    color: #1a4a6e;
    font-weight: 600;
    text-decoration: none;
}

.form-switcher a:hover {
    text-decoration: underline;
}

.error-message {
    color: #d9534f;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 15px;
    min-height: 1.2em;
}