/* WRAPPER & LAYOUT GENERAl */
.form-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

/* Navigasi Kembali */
.back-nav {
    position: absolute;
    top: 30px;
    left: 10%;
    z-index: 10;
}

.btn-back {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-back:hover {
    color: #00d2ff;
    border-color: rgba(0, 210, 255, 0.3);
    background: rgba(0, 210, 255, 0.02);
}

/* KOTAK GLASSMORPHISM FORM */
.form-container {
    max-width: 600px;
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 24px;
    position: relative;
    z-index: 2;
}

.form-header {
    text-align: center;
    margin-bottom: 35px;
}

.form-header p {
    color: #888;
    font-size: 0.95rem;
    margin-top: 10px;
}

/* INPUT STYLING */
.input-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.input-row {
    display: flex;
    gap: 20px;
}

.input-row .input-group {
    flex: 1;
}

label {
    color: #ccc;
    font-size: 0.85rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

input, textarea {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: rgba(0, 210, 255, 0.5);
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.1);
}

/* BUTTON SOFT NEON */
.submit-btn-neon {
    width: 100%;
    background: #bc13fe;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(188, 19, 254, 0.3);
    transition: 0.3s;
}

.submit-btn-neon:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.5);
    background: #c724ff;
}

/* ORNAMEN AURA BACKGROUND REDUP (SOFT) */
.form-glow-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.1; /* Sangat redup agar mata nyaman */
    z-index: 1;
}
.orb-1 { background: #bc13fe; top: 10%; left: 20%; }
.orb-2 { background: #00d2ff; bottom: 10%; right: 20%; }

/* Soft Neon Utility */
.soft-neon-blue { color: #00d2ff; text-shadow: 0 0 8px rgba(0, 210, 255, 0.3); }

/* RESPONSIVE HP */
@media (max-width: 500px) {
    .input-row { flex-direction: column; gap: 0; }
    .form-container { padding: 25px; }
    .back-nav { top: 15px; left: 5%; }
    .form-wrapper { padding-top: 80px; }
}