.customer_account_main {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-color);
    font-family: 'BPG Glaho Arial';
    margin-top: 50px;
}

.form-container {
    border-radius: 10px;
    width: 100%;
    max-width: 495px;
}

.form-container h1 {
    color: var(--form-label-color);
    font-size: 51px;
    text-align: center;
    margin-bottom: 35px;
}

.signin-divider {
    height: 1px;
    background: #858e92;
    max-width: 374px;
    margin-bottom: 40px;
    width: 80%;
}
.signup-divider {
    height: 1px;
    background: #858e92;
    width: 100%;
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 26px;
}

.form-group label {
    display: block;
    color: var(--form-label-color);
    margin-bottom: 0.5rem;
    font-size: 18px;
}

.form-group input {
    width: 100%;
    height: 35px;
    padding: 12px;
    border: 1px solid var(--form-input-border-color);
    border-radius: 5px;
    font-size: 1rem;
    color: #2F3E46;
}

.form-group input::placeholder {
    color: var(--placeholder-color);
}

.forgot-password {
    display: block;
    text-align: left;
    color: var(--color-muted);
    text-decoration: none;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.google-btn {
    width: 100%;
    height: 35px;
    padding: 7px 0px;
    background: #E8E3DC;
    border: none;
    border-radius: 50px;
    color: #3f3f3f;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 32px;
    cursor: pointer;
}

.google-btn img {
    width: 20px;
    height: 20px;
}

.submit-btn {
    width: 100%;
    height: 49px;
    background: var(--color-primary);
    border: none;
    border-radius: 5px;
    color: var(--color-text);
    font-size: 27px;
    cursor: pointer;
    margin-bottom: 27px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;

}

.switch-form {
    text-align: center;
    color: var(--color-muted);
    font-size: 12px;
}

.switch-form a {
    color: var(--color-primary);
    text-decoration: none;
}

/* Register form specific styles */
.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 50px;
}

.form-group.half {
    flex: 1;
    margin-bottom: 0;
}

.register-form .google-btn {
    margin-bottom: 27px;
}

/* Responsive adjustments */
@media (max-width: 540px) {
    .form-container {
        padding: 2rem;
    }
    .form-container h1 {
        font-size: 2rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-group.half {
        margin-bottom: 0;
    }
}