/* ===============================
   YCCUON Multi-Step Registration
================================ */

/* Wrapper */
.yccuon-register-wrapper {
    max-width: 900px;
    margin: 50px auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
}

/* ===============================
   Steps Header
================================ */
.yccuon-steps {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.yccuon-steps .step {
    flex: 1;
    padding: 12px 10px;
    text-align: center;
    border-radius: 6px;
    background: #f1f5f9;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    cursor: default;
    transition: all 0.3s ease;
}

.yccuon-steps .step.active {
    background: #0d6efd;
    color: #ffffff;
}

/* ===============================
   Step Panels
================================ */
.yccuon-step-content {
    margin-top: 10px;
}

.step-panel {
    display: none;
}

.step-panel.active {
    display: block;
}

/* ===============================
   Headings & Text
================================ */
.step-panel h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #111827;
}

.step-panel p {
    margin-bottom: 15px;
    font-size: 14px;
    color: #4b5563;
}

/* ===============================
   Form Fields
================================ */
.step-panel input[type="text"],
.step-panel input[type="email"],
.step-panel input[type="password"] {
    width: 100%;
    margin-bottom: 12px;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    color: #111827;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.step-panel input::placeholder {
    color: #9ca3af;
}

.step-panel input:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.15);
}

/* ===============================
   Buttons
================================ */
.next-btn,
.stripe-btn,
.dashboard-btn {
    display: inline-block;
    background: #0d6efd;
    color: #ffffff;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.25s ease, transform 0.1s ease;
}

.next-btn:hover,
.stripe-btn:hover,
.dashboard-btn:hover {
    background: #0b5ed7;
}

.next-btn:active,
.stripe-btn:active,
.dashboard-btn:active {
    transform: translateY(1px);
}

/* ===============================
   Button Alignment
================================ */
.step-panel form .next-btn {
    margin-top: 10px;
}

.step-panel .stripe-btn,
.step-panel .dashboard-btn {
    margin-top: 10px;
}

/* ===============================
   Responsive (Mobile)
================================ */
@media (max-width: 768px) {

    .yccuon-register-wrapper {
        padding: 20px;
        margin: 30px 15px;
    }

    .yccuon-steps {
        flex-direction: column;
    }

    .yccuon-steps .step {
        font-size: 13px;
    }

    .step-panel h3 {
        font-size: 18px;
    }
}