
/* --- Login & Register Page Styles --- */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

#login-form, #register-form {
    width: 100%;
    max-width: 400px;
    padding: 30px;
    border-radius: 8px;
    background-color: #2c2c2e; /* Slightly lighter than the main background */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

#login-form h2, #register-form h2 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--header-bg-color);
}

.form-group-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group-checkbox input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-group-checkbox label {
    margin: 0;
    font-size: 0.9em;
    color: var(--text-color);
}

.form-links {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.form-links a {
    color: var(--header-btn-color);
    text-decoration: none;
    font-size: 0.9em;
}

.form-links a:hover {
    text-decoration: underline;
}

.error-message {
    background-color: #5c1a1a;
    color: #f2d7d7;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    text-align: center;
    font-size: 0.9em;
}

.success-message {
    background-color: #1a5c2d;
    color: #d7f2dd;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    text-align: center;
    font-size: 0.9em;
}

.seller-info {
    background-color: #3a3a3c;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border-left: 3px solid var(--header-bg-color);
}

.seller-info p {
    margin: 5px 0;
    font-size: 0.9em;
}
