.account-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px 20px;
    background-color: #f8f9fa;
    min-height: calc(100vh - 80px); /* Adjust based on header height */
}

.account-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
}

.account-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

.account-form .form-group,
.form-field-wrapper {
    margin-bottom: 1.5rem;
}

.remember-me-container {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.remember-me-container input[type="checkbox"] {
    margin-right: 8px;
    width: auto; /* Override generic width: 100% */
}

/* Submit button is now just .btn-primary width:100% in template, but specific tweaks here */
.btn-submit {
    width: 100%;
    font-size: 1.1rem;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 2rem 0;
    color: #aaa;
}

.divider-line {
    flex-grow: 1;
    border: none;
    border-top: 1px solid #ddd;
}

.divider-text {
    padding: 0 1rem;
}

.account-links {
    text-align: center;
    margin-top: 1.5rem;
}

.account-links p {
    margin: 0.5rem 0;
}

.account-links a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

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