body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Segoe UI', Arial, sans-serif;
    overflow: hidden;
    background-color: #000;
}

.scene {
    position: relative;
    width: 100%;
    height: 100vh;
    /* ألوان مطابقة للصورة تماماً: برتقالي صارخ -> أحمر محروق -> أسود */
    background: linear-gradient(to bottom, 
        #ff8000 0%, 
        #ff3300 35%, 
        #800000 70%, 
        #000000 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* الشمس: تبدأ من الأعلى جداً خارج الشاشة */
.sun {
    position: absolute;
    width: 140px;
    height: 140px;
    background: #ffcc00; /* أصفر فاقع */
    border-radius: 50%;
    top: -150px; 
    box-shadow: 0 0 70px #ff6600;
    z-index: 1;
    /* حركة بطيئة جداً وانسيابية (7 ثوانٍ) */
    transition: transform 7s cubic-bezier(0.2, 0, 0.3, 1);
}

.sun.set {
    transform: translateY(125vh); /* تنزل لأسفل الشاشة تماماً */
}

/* صندوق الاستمارة: كبير، شفاف جداً، وناعم */
.form-box {
    width: 480px; /* حجم كبير */
    min-height: 450px;
    background: rgba(255, 255, 255, 0.05); /* شفافية عالية جداً */
    backdrop-filter: blur(25px); /* تأثير زجاجي قوي */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 50px;
    color: white;
    z-index: 10;
    text-align: center;
    /* إخفاء في البداية */
    opacity: 0;
    transform: translateY(30px);
    transition: all 2.5s ease-in-out;
}

.form-box.show {
    opacity: 1;
    transform: translateY(0);
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-weight: 400;
}

/* تنسيق المدخلات */
input {
    width: 100%;
    padding: 18px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    outline: none;
    box-sizing: border-box;
}

input::placeholder { color: rgba(255, 255, 255, 0.6); }

.main-btn {
    width: 100%;
    padding: 18px;
    background: #ffffff;
    color: #000;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.main-btn:hover { background: #ffcc00; }

/* نص التبديل باللون الأبيض الصريح */
.toggle-text {
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.toggle-text span {
    color: #ffffff; /* أبيض صريح */
    font-weight: bold;
    cursor: pointer;
    text-decoration: underline;
    margin-right: 5px;
}

.hidden { display: none; }