/* Font */
* {
  font-family: IRANSans, sans-serif;
}

/* Body styling */
body {
  margin: 0;
  background-color: #fff;
  direction: rtl;
  text-align: center;
  font-family: IRANSans, sans-serif;
}

/* Header logos */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10% 0;
}

.scab-logo-1 {
  height: 60px;
  object-fit: contain;
}

.scab-logo-2 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.scab-logo-2 img {
  height: 80px;
  object-fit: contain;
}

/* Main container box */
.container {
  width: 80%;
  margin: 10px auto 60px;
  padding: 50px 30px;
  border: 10px solid #0b1957;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

/* Icon */
.icon {
  font-size: 40px;
  color: #fcc900;
  margin-bottom: 20px;
}

/* Titles */
h2 {
  color: #ffa600;
  font-size: 18px;
  margin-bottom: 10px;
}

h4 {
  color: #000;
  font-size: 14px;
  margin-bottom: 30px;
}

/* Buttons */
button {
  background-color: #fcc900;
  color: black;
  border: none;
  border-radius: 8px;
  padding: 10px 30px;
  font-size: 14px;
  cursor: pointer;
  margin: 5px;
  transition: all 0.2s ease-in-out;
  font-family: IRANSans, sans-serif;
  font-weight: bold;
  min-width: 20%;
}

button:hover {
  background-color: #ff9900;
}

button:active {
  transform: scale(0.98);
}

#returnBtn {
  display: none;
}
