/* Registration Page Styles */

.register-hero {
    background-color: #111111;
    border-bottom: 1px solid #1e1e1e;
    padding: 80px 0 64px;
}

.register-hero .container {
    max-width: 960px;
}

/* Step Indicator */
.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #FFFFFF;
    font-weight: 700;
    transition: background-color 0.3s;
}

.step-item.active .step-number,
.step-item.completed .step-number {
    background-color: #DC3545;
}

.step-label {
    font-size: 10px;
    color: #8a8a8a;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.step-item.active .step-label {
    color: #FFFFFF;
}

.step-line {
    width: 24px;
    height: 1px;
    background-color: #2a2a2a;
}

/* Main Content */
.register-main {
    max-width: 960px;
    margin: 0 auto;
    padding: 64px 24px 120px;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Card */
.form-card {
    background-color: #111111;
    border: 1px solid #1e1e1e;
    padding: clamp(24px, 4vw, 56px);
}

.form-card-center {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}

.form-section-title {
    font-size: 11px;
    letter-spacing: 0.2em;
    color: #8a8a8a;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 32px;
    border-bottom: 1px solid #1e1e1e;
    padding-bottom: 16px;
}

/* Form Elements */
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.2em;
    color: #8a8a8a;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    background-color: #0A0A0A;
    border: 1px solid #2a2a2a;
    color: #FFFFFF;
    padding: 14px 16px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus {
    border-color: #DC3545;
}

.required {
    color: #DC3545;
}

/* Workshop Selection */
.workshop-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    color: #8a8a8a;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 16px;
}

.workshop-option {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border: 1px solid #1e1e1e;
    background-color: #0A0A0A;
    cursor: pointer;
    margin-bottom: 10px;
    transition: all 0.2s;
}

.workshop-option:hover {
    border-color: #DC3545;
}

.workshop-option input[type="radio"] {
    margin-top: 4px;
    accent-color: #DC3545;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.workshop-option input[type="radio"]:checked + .workshop-option-content {
    color: #FFFFFF;
}

.workshop-option:has(input:checked) {
    border-color: #DC3545;
    background-color: #1a0a0c;
}

.workshop-option-content {
    flex: 1;
}

.workshop-option-title {
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.workshop-option-desc {
    font-size: 13px;
    color: #8a8a8a;
    line-height: 1.6;
}

/* OTP Input */
.otp-input {
    font-size: 28px !important;
    letter-spacing: 0.4em;
    text-align: center;
    font-family: monospace;
}

/* Icon Circle */
.icon-circle {
    width: 56px;
    height: 56px;
    background-color: #1a1a1a;
    border: 1px solid #DC3545;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-success {
    background-color: #DC3545;
    border: none;
}

.step-title {
    font-family: Georgia, serif;
    font-size: 22px;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.step-description {
    font-size: 13px;
    color: #8a8a8a;
    line-height: 1.7;
    margin-bottom: 28px;
}

.highlight {
    color: #FFFFFF;
    font-weight: 600;
}

/* Payment Details */
.payment-details {
    background-color: #0A0A0A;
    border: 1px solid #2a2a2a;
    padding: 20px;
    margin-bottom: 28px;
    text-align: left;
}

.payment-detail-item {
    margin-bottom: 12px;
}

.payment-detail-item:last-child {
    margin-bottom: 0;
}

.payment-detail-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    color: #8a8a8a;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.payment-detail-value {
    font-size: 13px;
    color: #FFFFFF;
    font-family: monospace;
}

.payment-detail-amount {
    font-size: 20px;
    color: #DC3545;
    font-weight: 700;
}

/* Buttons */
.btn-submit {
    width: 100%;
    background-color: #DC3545;
    color: #FFFFFF;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 20px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    position: relative;
}

.btn-submit:hover:not(:disabled) {
    background-color: #c82333;
}

.btn-submit:disabled {
    background-color: #6a1a22;
    cursor: not-allowed;
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit .btn-loading {
    display: none;
}

.btn-submit.loading .btn-loading {
    display: inline;
}

.btn-secondary-full {
    width: 100%;
    background-color: transparent;
    color: #8a8a8a;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 14px;
    border: 1px solid #2a2a2a;
    cursor: pointer;
    margin-top: 12px;
    transition: all 0.2s;
}

.btn-secondary-full:hover {
    border-color: #DC3545;
    color: #FFFFFF;
}

/* Error Message */
.error-message {
    font-size: 13px;
    color: #DC3545;
    margin-bottom: 16px;
    display: none;
}

.error-message.show {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .step-indicator {
        flex-wrap: wrap;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .register-main {
        padding: 32px 20px 80px;
    }
}


/* Maintenance Notice */
.maintenance-notice {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
    text-align: center;
}

.maintenance-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.maintenance-icon svg {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.maintenance-title {
    font-size: 18px;
    font-weight: 700;
    color: #856404;
    margin-bottom: 12px;
}

.maintenance-text {
    font-size: 14px;
    color: #856404;
    line-height: 1.6;
    margin-bottom: 12px;
}

.maintenance-subtext {
    font-size: 13px;
    color: #856404;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(133, 100, 4, 0.2);
}

.maintenance-subtext strong {
    font-weight: 700;
    color: #664d03;
}

/* Developer Access */
.developer-access {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #2a2a2a;
}

.btn-developer-toggle {
    background: transparent;
    border: 1px solid #2a2a2a;
    color: #8a8a8a;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.btn-developer-toggle:hover {
    border-color: #DC3545;
    color: #DC3545;
}

.developer-panel {
    margin-top: 16px;
    padding: 20px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.developer-panel .form-group {
    margin-bottom: 16px;
}

.developer-panel label {
    font-size: 12px;
    color: #8a8a8a;
    margin-bottom: 8px;
    display: block;
}

.developer-panel input {
    width: 100%;
    padding: 12px;
    background: #111111;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    color: #FFFFFF;
    font-size: 14px;
    font-family: 'Courier New', monospace;
}

.developer-panel input:focus {
    outline: none;
    border-color: #DC3545;
}

.btn-small {
    padding: 10px 20px;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .maintenance-notice {
        padding: 20px;
    }
    
    .maintenance-title {
        font-size: 16px;
    }
    
    .maintenance-text {
        font-size: 13px;
    }
    
    .developer-panel {
        padding: 16px;
    }
}


/* Policy Agreement Checkbox */
.policy-agreement {
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: #DC3545;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 12px;
    color: #8a8a8a;
    line-height: 1.6;
}

.checkbox-label span a {
    color: #DC3545;
    text-decoration: none;
}

.checkbox-label span a:hover {
    text-decoration: underline;
}
