/* Registration Flow Styles */

.registration-section {
    padding: 120px 0 80px;
    background-color: var(--bg-light);
    min-height: 100vh;
}

.registration-container {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.registration-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

/* Plan Selection */
.plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.plan-card {
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.plan-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.plan-card.selected {
    border-color: var(--primary);
    background-color: #E0F2F1;
    box-shadow: 0 0 0 2px var(--primary);
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.plan-price {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 1rem;
}

.plan-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Payment Form */
.credit-card-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fafafa;
}

.cc-icon {
    font-size: 1.5rem;
    color: #555;
    margin-right: 10px;
}

/* Progress Steps */
.step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 1rem;
}

.step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ddd;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step.active {
    background-color: var(--primary);
}

.step.completed {
    background-color: var(--primary-dark);
}

/* Terms Box */
.terms-box {
    height: 150px;
    overflow-y: scroll;
    padding: 1rem;
    border: 1px solid #ddd;
    background: #f9f9f9;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    border-radius: 4px;
}