/* Reset default styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;

}

/* Apply responsive styles */
body {
  font-family: Arial, sans-serif;
  background-color: white;
  padding: 20px;
  }

div {
  max-width: 500px;
  margin: 0 auto;
  background-color: white;
  padding: 20px;
  border-radius: 25px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  direction: rtl;
}

label {

  margin-bottom: 1px;
  text-align: right;
  margin-right: 10px;
  font-size: 1.4rem;

}

select,
input[type="submit"] {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1.3rem;
  margin-right: 5px;

}

input[type="submit"] {
  background-color: #007bff;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;

}

input[type="submit"]:hover {
  background-color: #0056b3;
}

/* Media queries for responsiveness */
@media screen and (max-width: 600px) {
  div {
    max-width: 100%;
    padding: 10px;
  }

  select,
  input[type="submit"] {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1.3rem;
  }
}
.home{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 25px;
  font-size: 1.3rem;
  color: #fff;
  border: none;
  border-radius: 15px;
  margin-top: 10px;
}
