.register-page-wrapper {
    background-color: #fcfcfc;
    padding: 20px 0 40px 0;
    font-family: 'Inter', sans-serif;
}

.register-container {
    max-width: 1000px;
    margin: 0 auto;
}

.page-header-title {
    text-align: center;
    font-family: serif;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.registration-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px 35px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.account-section-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.billing-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 30px;
}

.grid-span-2 {
    grid-column: span 2;
}

.section-divider-line {
    border: 0;
    border-top: 1px solid #eee;
    margin: 20px 0;
}

.section-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #555;
}

.form-control-custom {
    width: 100%;
    height: 38px;
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.9rem;
    background-color: #ffffff;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s;
}

.form-control-custom:focus { 
    border-color: #A74463; 
}

.readonly-field {
    background-color: #f9f9f9;
    color: #777;
    cursor: not-allowed;
}

.row-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.error-text {
    color: #A74463;
    font-size: 10px;
    display: block;
    margin-top: 2px;
}

.form-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 40px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    color: #666;
    font-size: 0.95rem;
    box-sizing: border-box;
}

.btn-save {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 40px;
    background-color: #A74463;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    box-sizing: border-box;
}

.password-wrap { position: relative; }

.toggle-eye {
    position: absolute;
    right: 10px; 
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #bbb;
    font-size: 0.85rem;
}

.guest-checkout-area {
    margin-top: 20px;
    text-align: center;
}

.separator-text {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 10px 0;
}

.separator-text::before, .separator-text::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #eee;
}

.separator-text span {
    padding: 0 12px;
    color: #bbb;
    font-size: 0.8rem;
}

.btn-guest-order {
    display: inline-block;
    padding: 8px 30px;
    border: 1px solid #A74463;
    color: #A74463;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .account-section-grid { grid-template-columns: 1fr; gap: 10px; }
    .billing-section-grid { grid-template-columns: 1fr; }
    .grid-span-2 { grid-column: span 1; }
}