@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", serif;
}
.main {
  padding: 20px;
}
a {
  text-decoration: none;
}
.header-container {
  background-image: linear-gradient(
      to bottom left,
      rgba(22, 27, 57, 0.5),
      rgba(22, 27, 57, 0.5)
    ),
    url("bg.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  height: 200px;
  border-bottom-right-radius: 80px;
  display: flex;
  flex-direction: column;

  justify-content: center;
  padding: 10px;
}
.title {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
}
.tt {
  font-size: 14px;
}
.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.line {
  margin: 10px 0px 20px;
  height: 0.5px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.396);
}
.header-row img {
  width: 120px;
}
.header-row {
  font-size: 22px;
}
.header-row a {
  color: white;
}
input,
textarea {
  background-color: rgba(128, 128, 128, 0.368);
  border: none;
  margin-bottom: 10px;
  margin-top: 2px;

  width: 100%;
  border-radius: 5px;
  padding: 10px;
}
textarea {
  min-height: 80px;
}
label {
  font-size: 14px;
}
.form-container {
  padding: 10px 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}
input {
  font-size: 16px;
}
h3 {
  text-align: center;
  margin-bottom: 5px;
}
.sub {
  font-size: 12px;
  color: #737ca1;
  font-weight: bold;
  margin: 10px 0px;
  display: flex;
  align-items: center;
}
.sub i {
  margin-right: 3px;
  font-size: 6px;
}
.sub-sub {
  font-size: 12px;
  text-align: center;
  margin-bottom: 20px;
  color: grey;
}
button {
  background-color: #fee003;
  border: none;
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  font-size: 18px;
  margin-top: 15px;
}
