/* Account Page Styles */
.account-content {
    margin-top: 100px;
    padding: 2rem;
    min-height: calc(100vh - 100px - 400px);
    /* Adjust based on header and footer height */
}

.account-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Form Sections */
.form-section {
    display: none;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.form-section.active {
    display: block;
}

.form-section h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 24px;
}

/* Form Groups */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="email"] {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.required {
    color: var(--accent-color);
}

/* Password Input */
.password-input {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
}

/* Remember Me & Forgot Password */
.remember-me {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.remember-me label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 1rem;
    background: #8cc63f;
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background: #7ab535;
}

/* Info Section */
.info-section {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-content {
    display: none;
    text-align: center;
}

.info-content.active {
    display: block;
}

.info-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 24px;
}

.info-content p {
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

/* Switch Button */
.switch-btn {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.switch-btn:hover {
    background: #2a3575;
}

/* Notices */
.register-notice,
.privacy-notice {
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.privacy-notice a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .account-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-section,
    .info-section {
        padding: 1.5rem;
    }
}