@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
    --primary: gold;
    --primary-dark: #1e40af;
    --secondary: #10b981;
    --error: #e74c3c;
    --success: #2ecc71;
    --dark: #bfbfc0;
    --light: #f8fafc;
    --gray: #94a3b8;
    --gradient: linear-gradient(135deg, #323232, #2a2926b9);
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  background: url(/pluto/images/index/IMG_20250429_092836_344-pica_2.png) fixed  no-repeat ;
  background-position: center;
  background-size: cover;
      color: var(--dark);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */

        
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* /////////////////////////////////////////// */



/* section_header */
.section_header {
  background: var(--gradient);
  color: white;
  padding: 150px 0 120px;
  clip-path: ellipse(100% 100% at 50% 0%);
  position: relative;
  overflow: hidden;

}

.section_header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat;
  background-size: cover;
  background-position: bottom;
  opacity: 0.5;
}

.header-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.header-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
  animation: fadeInDown 1s ease;
  color: gold;
}

.header-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 30px;
  animation: fadeIn 1.5s ease;
}

.btn {
  display: inline-block;
  background: white;
  color: var(--primary);
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: var(--transition);
  border: 2px solid white;
  box-shadow: var(--shadow);
  animation: fadeInUp 1s ease;
}

.btn:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
}


/* Registration Form/////////////////////////////////////////////////////////////////// */
    /* التصميم الأساسي */
    :root {
        --primary-bg: #121212;
        --secondary-bg: #1E1E1E;
        --gold-color: #D4AF37;
        --light-gold: #FFD700;
        --white-color: #FFFFFF;
        --gray-color: #CCCCCC;
        --error-color: red;
    }
    
    body {
        background-color: var(--primary-bg);
        color: var(--white-color);
        font-family: 'Tajawal', 'Arial', sans-serif;
        line-height: 1.6;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }
    
    /* بطاقة التسجيل */
    .registration-card {
        background-color: var(--secondary-bg);
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        border: 1px solid var(--gold-color);
        max-width: 600px;
        margin: 50px auto;
    }
    
    .form-title {
        color: var(--light-gold);
        text-align: center;
        font-size: 28px;
        margin-bottom: 30px;
        font-weight: 700;
        border-bottom: 2px solid var(--gold-color);
        padding-bottom: 15px;
    }
    
    /* حقول النموذج */
    .form-group {
        margin-bottom: 25px;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: var(--light-gold);
        font-weight: 500;
    }
    
    .form-control {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #333;
        border-radius: 6px;
        background-color: #2A2A2A;
        color: var(--white-color);
        font-size: 16px;
        transition: all 0.3s;
    }
    
    .form-control:focus {
        outline: none;
        border-color: var(--gold-color);
        box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
    }
    
    /* مجموعة رقم الهاتف */
    .phone-input-group {
        display: flex;
        gap: 10px;
    }
    
    .country-code {
        flex: 0 0 120px;
        background-color: #2A2A2A;
        color: var(--white-color);
        border: 1px solid #333;
    }
    
    .phone-number {
        flex: 1;
    }
    
    /* زر الإرسال */
    .submit-btn {
        width: 100%;
        padding: 15px;
        background: linear-gradient(135deg, var(--gold-color), #B8860B);
        border: none;
        border-radius: 6px;
        color: #000;
        font-size: 18px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s;
        margin-top: 20px;
    }
    
    .submit-btn:hover {
        background: linear-gradient(135deg, var(--light-gold), var(--gold-color));
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    }
    
    /* حقول كلمة السر */
    .password-fields {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .password-match {
        font-size: 14px;
        margin-top: 5px;
    }
    
    /* الروابط */
    .log_btn {
        color: var(--light-gold);
        text-decoration: none;
        font-weight: 500;
    }
    
    .log_btn:hover {
        text-decoration: underline;
    }
    
    .privace {
        color: var(--gray-color);
        margin-left: 5px;
    }
    
    .privace a {
        color: var(--light-gold);
        text-decoration: none;
    }
    
    .privace a:hover {
        text-decoration: underline;
    }
    
    /* رسائل الخطأ */
    .error-message {
        color: var(--error-color);
        font-size: 14px;
        margin-top: 5px;
        display: none;
    }
    
    .red {
        color: var(--error-color);
        font-size: 14px;
        margin-top: 5px;
    }
    
    /* خانة الاختيار */
    input[type="checkbox"] {
        appearance: none;
        -webkit-appearance: none;
        width: 18px;
        height: 18px;
        border: 2px solid var(--gold-color);
        border-radius: 4px;
        background-color: transparent;
        position: relative;
        vertical-align: middle;
        margin-left: 10px;
        cursor: pointer;
    }
    
    input[type="checkbox"]:checked {
        background-color: var(--gold-color);
    }
    
    input[type="checkbox"]:checked::after {
        content: "✓";
        position: absolute;
        color: #000;
        font-size: 14px;
        font-weight: bold;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    
    /* تأثيرات إضافية */
    .registration-card {
        overflow: hidden;
    }
    
    .registration-card::before {
        content: "";
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(0,0,0,0) 70%);
        z-index: 0;
    }
    
    .form-group {
        position: relative;
        z-index: 1;
    }

/* Responsive */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2rem;
    }
    
    .registration-card {
        padding: 30px 20px;
    }
    
    .password-fields {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

