.u-section-1 .u-sheet-1 {
  min-height: 400px;
}


.formbg {
  background-color: #151224;
  font-family: stv-bold;
}

.container {
  width: 80%;
  background-color: #151224;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  height: 100%;
}




.form {
 display: flex;
 flex-direction: column;
 align-items: center; /* لضبط المحاذاة إلى اليمين */
 text-align: right; /* لضبط النصوص إلى اليمين */
 width: 90%;
 margin: auto;
 font-family: 'Rubik', sans-serif;
}

label {
 margin-top: 20px;
 margin-bottom: 8px;
 color: #ffffff;
 direction: rtl;
 display: block;
 font-family: 'Rubik', sans-serif;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {

  width: 100%;
  max-width: 400px;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  font-family: 'Rubik', sans-serif;
}

textarea {
  resize: vertical;
  margin-top: 5px;
  margin-bottom: 5px;
  font-family: 'Rubik', sans-serif;
}

input[type="submit"] {
  width: 100%;
  max-width: 400px;
  background-color: #1364c2;
  color: white;
  border: none;
  padding: 15px 0;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.6s;
  margin-bottom: 23px;
  font-family: 'Rubik', sans-serif;
}

input[type="submit"]:hover {
  background-color: #3a79c2;
}