@font-face{
  font-family: Vazir;
  src: url(../themes/default/fonts/Vazirmatn-Regular.woff2);
}
@font-face{
  font-family: Vazir;
  font-weight: bold;
  src: url(../themes/default/fonts/Vazirmatn-Bold.woff2);
}

body{
  background: linear-gradient(#04D4F0,#059DC0);
  background-attachment: fixed;
}
.form-container {
  background-color: #3498db;
  padding: 30px;
  border: 4px solid darkblue;
  border-radius: 10px;
  width: 400px;
  margin: 125px auto;
  color: #fff;
}

.form-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #000;
}

.form-group {
  margin-bottom: 15px;
  text-align: right;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #fff;
}

.form-group input {
  width: 100%;
  padding: 8px;
  border: none;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 14px;
  direction: rtl;
  border:2px solid darkblue;
}

.button-group {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.button-group2 {
  display: flex;
  justify-content: center; 
  align-items: center;
  margin-top: 20px;
}

.button-group button {
  padding: 10px;
  background-color: #000C66;
  color: cyan;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  gap: 4px;
  width: 150px;
}

.button-group2 button {
  padding: 10px;
  background-color: #000C66;
  color: cyan;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  gap: 4px;
  width: 150px;
}

.button-group .button-group2 button:hover {
  background-color: darkblue;
}

@media (max-width: 768px) {
  .form-container{
    width: 100%;
    margin: 0 auto;
  }
}