
@font-face{font-family:TIDOB;src:url(../style/TIDOB.otf) format('truetype');}
@font-face{font-family:TIDOR;src:url(../style/TIDOR.otf) format('truetype');}
@font-face{font-family:TIDOL;src:url(../style/TIDOL.otf) format('truetype');}
body {
    font-family: 'TIDOR', sans-serif;
    background: linear-gradient(to bottom, #6a0572, #0e9279);
    color: white;
    height: 100%;
    margin-bottom: 100px;
}
h1 {
    font-family: 'TIDOB';
    display: block;
    
}
input[name="name"] {
    width: 100%;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-color: white;
    background-image: url('../images/id-card.png'); /* تأكد من أن الصورة موجودة */
    background-position: 10px 10px; 
    background-repeat: no-repeat;
    background-size: 28px;
    padding: 12px 20px 12px 40px; /* ترك مساحة للأيقونة */
  }
  input[name="phone"] {
    width: 100%;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-color: white;
    background-image: url('../images/telephone.png'); /* تأكد من أن الصورة موجودة */
    background-position: 10px 10px; 
    background-repeat: no-repeat;
    background-size: 28px;
    padding: 12px 20px 12px 40px; /* ترك مساحة للأيقونة */
  }
  input[name="parent_phone"] {
    width: 100%;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-color: white;
    background-image: url('../images/parents.png'); /* تأكد من أن الصورة موجودة */
    background-position: 10px 10px; 
    background-repeat: no-repeat;
    background-size: 28px;
    padding: 12px 20px 12px 40px; /* ترك مساحة للأيقونة */
  }
  input[name="grade"] {
    width: 100%;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-color: white;
    background-image: url('../images/id-card.png'); /* تأكد من أن الصورة موجودة */
    background-position: 10px 10px; 
    background-repeat: no-repeat;
    background-size: 28px;
    padding: 12px 20px 12px 40px; /* ترك مساحة للأيقونة */
  }
  select[name="city"] {
    width: 100%;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-color: white;
    background-image: url('../images/map.png'); /* تأكد من أن الصورة موجودة */
    background-position: 10px 10px; 
    background-repeat: no-repeat;
    background-size: 28px;
    padding: 12px 20px 12px 40px; /* ترك مساحة للأيقونة */
  }  
@media (max-width: 768px) {
h1 {
font-size: 1.2rem; /* تصغير حجم الخط في الموبايل */
}
small {
font-size: 0.6rem; /* تصغير النص الصغير أيضًا */
}
}

small{
    display: block;
}
            .parallax {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: url('../images/background.png') no-repeat center;
        background-size: cover;
        z-index: -1;
        filter: brightness(0.7) contrast(1.2);
        opacity: 0.1;
    }


@keyframes moveBackground {
    from { transform: translateY(0); }
    to { transform: translateY(-30px); }
}
.logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}
.shadow {
        box-shadow: 14px 1rem 1rem 4px rgba(0, 0, 0, .15) !important;
    }
.package-card {
    border: 2px solid #007bff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    position: relative;
    padding: 10px;
}
.package-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}
.package-card.selected::after {
    content: '✔';
    position: absolute;
    top: 40%;
    right: 30px;
    background: gold;
    padding: 5px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}
.package-card.selected {
    background-color: #276f94;
    color: #fff;
    border-color: #48c1ff;
}
.btn:hover {
    background-color: #0e9279 !important;
}
@media (max-width: 768px) {
.logo-container img {
height: 60px;
}
}
.inputdata {
margin-bottom: 20px;
}

.inputdata label {
display: block;
font-family:'TIDOB';
font-weight: bold;
margin-bottom: 5px;
}

.inputdata small {
display: block;
color: #FFA500; /* برتقالي فاتح */
margin-bottom: 10px;
}

.inputdata input {
padding: 10px;
border-radius: 5px;
}