:root {
    --biz-bg-dark: #0f172a;
    --biz-primary-blue: #1e3a8a;
    --biz-accent-gold: #D4AF37;
    --biz-text-main: #334155;
    --biz-text-light: #64748b;
    --biz-glass-bg: rgba(255, 255, 255, 0.85);
    --biz-glass-border: rgba(255, 255, 255, 0.4);
}

/* Set global font khusus section registrasi */
.biz-auth-section, 
.biz-auth-section * {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    box-sizing: border-box;
}

.biz-auth-section {
    padding: 80px 5%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.biz-auth-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

/* Glassmorphic Box */
.biz-auth-box {
    background: var(--biz-glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--biz-glass-border);
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.biz-auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.biz-auth-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--biz-primary-blue);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.biz-auth-title span {
    color: var(--biz-accent-gold);
}

.biz-auth-subtitle {
    color: var(--biz-text-light);
    font-size: 1rem;
    font-weight: 500;
}

/* Form Layout Grid */
.biz-auth-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.biz-form-group {
    display: flex;
    flex-direction: column;
}

.biz-form-group.full-width {
    grid-column: span 2;
}

.biz-form-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--biz-primary-blue);
    margin-bottom: 8px;
}

.label-note {
    font-size: 0.8rem;
    color: var(--biz-text-light);
    font-weight: 500;
}

/* Custom Input Fields */
.biz-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.biz-input-icon {
    position: absolute;
    left: 20px;
    color: var(--biz-text-light);
    font-size: 1.2rem; /* Ukuran ikon Remix dipernyaman */
    transition: color 0.3s ease;
}

.biz-input-icon.textarea-icon {
    top: 16px;
}

.biz-input-field {
    width: 100%;
    padding: 14px 20px 14px 52px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--biz-text-main);
    transition: all 0.3s ease;
    outline: none;
}

.biz-input-field::placeholder {
    color: #94a3b8;
}

.biz-input-field:focus {
    border-color: var(--biz-accent-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.biz-input-field:focus + .biz-input-icon {
    color: var(--biz-accent-gold);
}

.biz-textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

.biz-textarea.short-textarea {
    min-height: 80px;
}

/* Custom Radio Group (Umum/Mahasiswa) */
.biz-radio-group {
    display: flex;
    gap: 30px;
    margin-top: 5px;
}

.biz-radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--biz-text-main);
    cursor: pointer;
    position: relative;
}

.biz-radio-label input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.biz-radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    transition: all 0.2s ease;
}

.biz-radio-label input[type="radio"]:checked + .biz-radio-custom {
    border-color: var(--biz-accent-gold);
    background: #ffffff;
}

.biz-radio-label input[type="radio"]:checked + .biz-radio-custom::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--biz-accent-gold);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

/* Dynamic CV Upload Area */
.biz-cv-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.biz-cv-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.biz-file-wrapper {
    position: relative;
    flex-grow: 1;
    overflow: hidden;
}

.biz-file-input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.biz-file-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px dashed rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    color: var(--biz-text-light);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.biz-file-input:hover + .biz-file-trigger {
    border-color: var(--biz-primary-blue);
    color: var(--biz-primary-blue);
}

.biz-remove-cv-btn {
    background: #ef4444;
    color: #ffffff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.2s ease;
}

.biz-remove-cv-btn:hover {
    background: #dc2626;
}

/* Buttons Theme */
.biz-btn-primary {
    background: var(--biz-primary-blue);
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: fit-content;
}

.biz-btn-primary:hover {
    background: var(--biz-accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.biz-btn-secondary {
    background: transparent;
    color: var(--biz-accent-gold);
    border: 1px solid var(--biz-accent-gold);
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.biz-btn-secondary:hover {
    background: var(--biz-accent-gold);
    color: #ffffff;
}

.biz-form-submit-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 15px;
}

/* --- RESPONSIVE MEDIA BREAKPOINTS --- */
@media (max-width: 768px) {
    .biz-auth-form {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .biz-form-group.full-width {
        grid-column: span 1;
    }
    
    .biz-auth-box {
        padding: 35px 20px;
    }

    .biz-auth-title {
        font-size: 2rem;
    }
    
    .biz-form-submit-wrapper {
        justify-content: center;
    }
    
    .biz-btn-primary {
        width: 100%;
        justify-content: center;
    }
}

/* Mengharmoniskan select box agar seragam dengan input field lainnya */
select.biz-input-field {
    padding-right: 40px; /* Beri space di kanan untuk icon panah */
}


/* Style untuk container back link */
.biz-back-to-home {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

/* Style untuk link panah kembali */
.biz-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Jarak antara icon panah dan teks */
    color: #666; /* Warna default abu-abu halus, sesuaikan dengan tema */
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Efek saat di-hover mouse */
.biz-back-link:hover {
    color: #000; /* Warna berubah lebih tegas saat di-hover (bisa ganti ke warna primary kamu) */
    transform: translateX(-4px); /* Efek animasi sedikit bergeser ke kiri */
}

/* Ukuran icon panah */
.biz-back-link i {
    font-size: 18px;
}