* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  h1,h2,h3,h4.h5,body,p {
    font-family: Lato, Arial, Helvetica, sans-serif !important;
}

h2 {
    font-size: 30px;
    line-height: 40px;
    letter-spacing: -0.025em;
    color: #252525;
    font-size:30px;
    font-weight:500;
    padding-bottom: 25px;
}
h4 {
    font-weight: 500;
    font-size: 1.3rem;

}
  body {
    font-family: Lato, Arial, Helvetica, sans-serif;
    color: #3b3b3b;
    background-repeat: no-repeat;

  }
  
  .main-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  .site-header {
    background: #fff;
    padding: 5px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #c2cdd4;
    box-sizing: border-box;
    height: 100px;
    width: 100%;
    


  }
  
  .site-logo {
    height: 65px;
    width: auto;
    transition: all 0.3s ease;
    padding-left: 40px;
  }
  
  .content {
    background: url('background.png') no-repeat center center fixed;
    background-size: cover;
    padding: 20px;
    flex: 1;
  }
  
  .card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .form-row {
    display: flex;
    gap: 20px;
  }
  
  .card-container {
    flex: 1 1 45%;
    max-width: 500px;
  }
  
  .card h4 {
    margin-top: 0;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
  }
  
  .rz-textbox,
  .rz-inputtext {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .datepicker .rz-calendar {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .datepicker button {
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .checkbox-label {
    display: flex;
    align-items: center;
    font-size: 14px;
  }
  
  .rz-chkbox-box {
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    position: relative;
    margin-right: 10px;
  }
  
  .rz-chkbox-icon {
    display: none;
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23007bff" d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat center center;
    background-size: contain;
  }
  
  input[type="checkbox"]:checked + .rz-chkbox-box .rz-chkbox-icon {
    display: block;
  }
  
  /* Buttons */
  .rz-button {
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: none;
    cursor: pointer;
  }
  
  .rz-button i.rzi {
    font-size: 18px;
  }
  
  .rz-button.rz-primary {
    background-color: #007bff;
    color: white;
  }
  
  .rz-button.rz-light {
    background-color: #e9ecef;
    color: black;
  }
  
  .footer {
    background: #0C3C7A;
    padding-top: 20px;
    padding-bottom: 20px;
    position:fixed;
    bottom:0;
    width:100%;
}
  
  .smallprint a {
    text-decoration: none;
    color: #fff;
    font-weight: 200 !important;
  }
  
  .smallprint span {
    margin: 50 0px;
  }
 /* Buttons */
.rz-button {
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: none;
    cursor: pointer;
  }
  
  /* Button with primary color (Check) */
  .rz-button.rz-primary {
    background-color: #007bff; /* Blue color */
    color: white;
  }
  
  /* Button with light color (Clear) */
  .rz-button.rz-light {
    background-color: #e9ecef;
    color: #333;
  }
  
  /* Icon inside the button */
  .rz-button i.rzi {
    font-size: 18px;
  }
  .material-symbols-outlined {
    font-size: 20px;
    display: inline-flex;
    align-items: center;
  }
/* form-infos   */
.rz-textbox {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.rz-textbox:focus {
  border-color: #66afe9;
  box-shadow: 0 0 3px rgba(102, 175, 233, 0.6);
  outline: none;
}

/* للتحكم في شكل الأيقونات بجانب التاريخ */
.rz-datepicker-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* زرّي check و clear */
.btn-check {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 8px 16px;
  margin-right: 10px;
  border-radius: 5px;
  cursor: pointer;
}

.btn-clear {
  background-color: #e0e0e0;
  color: #333;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
}

/* Checkbox وتنسيق النص بجانبه */
input[type="checkbox"] {
  margin-right: 5px;
}
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* كل card-container يأخذ نصف المساحة على الشاشات الكبيرة */
.card-container {
  flex: 1 1 48%;
}

/* شاشات أقل من 768px: الكروت تصير تحت بعض */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  .card-container {
    width: 100%;
  }
}
