/* Register Specific Styles */
:root {
    --primary: #D97706;
    --dark-bg: #0A0A0A;
    --card-glass: rgba(255, 255, 255, 0.03);
}

.register-page-body {
    background-color: var(--dark-bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
    background-image: radial-gradient(circle at top right, rgba(217, 119, 6, 0.03) 0%, transparent 60%),
                      radial-gradient(circle at bottom left, rgba(217, 119, 6, 0.03) 0%, transparent 60%);
}

.register-card-p {
    background: var(--card-glass);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 35px;
    padding: 50px;
    width: 100%;
    max-width: 550px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
    text-align: center;
}

.register-logo-box {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
    display: block;
}

.register-title-text {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.register-card-p .form-control {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
    color: #fff !important;
    padding: 12px 20px !important;
}

.register-card-p .form-select {
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 16px !important;
    color: #fff !important;
    padding: 12px 20px !important;
}

.register-card-p .form-select option {
    background: #1a1a2e;
    color: #fff;
}

.register-card-p .form-select:focus {
    background: rgba(0, 0, 0, 0.4) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.2);
}

.btn-register-premium {
    background: var(--primary);
    color: #000;
    border: none;
    width: 100%;
    padding: 16px;
    border-radius: 18px;
    font-weight: 800;
    font-size: 1.1rem;
    margin-top: 25px;
    transition: all 0.3s ease;
}

.btn-register-premium:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.2);
}

/* Wizard Styles */
.wizard-steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
}

.wizard-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
    transform: translateY(-50%);
}

.w-step {
    width: 40px;
    height: 40px;
    background: #0A0A0A;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    z-index: 1;
    color: rgba(255, 255, 255, 0.5);
    transition: 0.3s;
}

.w-step.active {
    border-color: var(--primary);
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 20px rgba(217, 119, 6, 0.5);
}

.w-step.done {
    border-color: var(--primary);
    color: var(--primary);
}

.form-step {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.form-step.active {
    display: block;
}

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

.register-footer-p {
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.register-footer-p a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
}

.back-home-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 50px;
    transition: 0.3s;
    z-index: 100;
}

.back-home-btn:hover {
    background: var(--primary);
    color: #000;
}

/* Password Strength Meter */
.strength-bar {
    height: 4px;
    flex: 1;
    border-radius: 2px;
    background: rgba(255,255,255,0.1);
    transition: background 0.3s;
}
.strength-bar.weak { background: #ef4444; }
.strength-bar.fair { background: #f59e0b; }
.strength-bar.good { background: #22c55e; }
.strength-bar.strong { background: #10b981; }
.strength-text {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

@media (max-width: 767px) {
    .register-page-body {
        padding: 30px 16px;
    }

    .register-card-p {
        padding: 30px 24px;
        border-radius: 24px;
    }

    .register-title-text {
        font-size: 1.6rem;
    }

    .register-card-p .form-control,
    .register-card-p .form-select {
        padding: 12px 16px !important;
        font-size: 16px;
    }

    .btn-register-premium {
        padding: 14px;
        font-size: 1rem;
        min-height: 48px;
    }

    .wizard-steps {
        gap: 16px;
    }

    .w-step {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }

    .back-home-btn {
        top: 10px;
        right: 10px;
        padding: 8px 14px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .register-card-p {
        padding: 24px 18px;
    }

    .register-title-text {
        font-size: 1.4rem;
    }

    .wizard-steps {
        gap: 12px;
    }

    .w-step {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}

/* Student Type Selector & Forms */
.type-cards {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.type-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.type-card:hover {
    transform: translateY(-5px);
    background: rgba(217, 119, 6, 0.1);
    border-color: var(--primary);
}

.type-card .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.type-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.type-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

.hidden {
    display: none !important;
}

.radio-group.large {
    display: flex;
    gap: 15px;
}

.radio-card {
    flex: 1;
    position: relative;
    cursor: pointer;
}

.radio-card input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-card span {
    display: block;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    color: #fff;
    transition: all 0.3s;
}

.radio-card input:checked ~ span {
    background: rgba(217, 119, 6, 0.2);
    border-color: var(--primary);
    color: var(--primary);
    font-weight: bold;
}
