:root {
  --main-bg: #FFFAEF;
  --frame-border: #463024;
  --accent: #E5B739;
  --text-dark: #1E1E1E;
  --text-light: #ffffff;
  --text-red: #D0011E;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--main-bg);
  background: url("img/green-frame.png") center no-repeat;
  font-family: "Zain", sans-serif;
  background-size: cover;
  background-position: top;
}

a {
  text-decoration: none;
  color: var(--main-bg);
}

.logo {
  width: 20%;
  max-width: 220px;
  margin-bottom: 20px;
  align-items: center;
}

.form-container {
  width: 100%;
  min-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section1-text {
  font-size: 22px;
  font-weight: 700;
  text-align: right;
  color: var(--text-dark);
}

.section1-squ {
  height: 50px;
  border-radius: 25px;
  border: 1px solid var(--frame-border);
  padding: 0 15px;
  font-size: 16px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 10px;
  color: var(--text-dark);
  text-align: right;
  font-family: Zain;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.section1-text1 {
  text-align: right;
  font-size: 14px;
  color: var(--text-dark);
  text-decoration: underline;
  margin-top: 8px;
      align-self: flex-end;
}

.cta {
  display: inline-block;
  text-decoration: none;
  margin-top: 20px;
  width: 253px;
  height: 60px;
  border-radius: 28px;
  background: var(--accent);
  color: var(--text-light);
  border: none;
  font-family: "Lalezar", sans-serif;
  font-size: 20px;
  text-align: center;
  line-height: 60px;
  cursor: pointer;
}
.cta:hover{
 background: var(--text-red);
}

@media (max-width: 1200px) {
  .form-container {
    width: 60%;
  }
  .section1-text {
    font-size: 20px;
  }
}

@media (max-width: 900px) {
  .form-container {
    width: 70%;
  }
  .logo {
    width: 30%;
  }
  .section1-text {
    font-size: 18px;
  }
}

@media (max-width: 500px) {
  body {
    background-size: cover;
  }
  .logo {
    width: 30%;
  }
  .form-container {
    width: 85%;
    min-width: 354px;
  }
  .section1-squ {
    height: 45px;
  }
  .cta {
    font-size: 18px;
  }
  .section1-text {
    font-size: 16px;
  }
  .section1-text1 {
    font-size: 13px;
  }
}

