#xyz-registration-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    font-family: 'Inter', sans-serif;
}

.xyz-step h3 {
    margin-top: 0;
    color: #333;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #555;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 14px;
}

.form-group input:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1);
}

button {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

#xyz-send-otp-btn,
#xyz-verify-otp-btn {
    background: #0073aa;
    color: #fff;
}

.next-step {
    background: #4caf50;
    color: #fff;
    width: 100%;
    margin-top: 20px;
}

.next-step:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.prev-step {
    background: #666;
    color: #fff;
    margin-top: 20px;
    margin-right: 10px;
}

#xyz-submit-btn {
    background: #2196f3;
    color: #fff;
    width: calc(100% - 110px);
    margin-top: 20px;
}

.success-box {
    text-align: center;
    padding: 40px;
    background: #e8f5e9;
    border: 1px solid #c8e6c9;
    border-radius: 12px;
}

.success-box h4 {
    color: #2e7d32;
    margin-bottom: 15px;
}

#xyz-otp-section {
    background: #efefef;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

#xyz-otp-msg {
    display: block;
    margin-top: 8px;
    font-size: 13px;
}