* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

body {
  height: 100%;
  background-color: #332675;
  color: white;
  background-image: url("../images/form/elements.png");
}
.body-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.copy {
  min-height: 60vh;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.hero {
  position: relative;
  min-height: 80vh;
}

.grid {
  display: grid;
  grid-template-columns: 1.1fr 480px;
  gap: 48px;
  align-items: center;
  padding: 72px 20px 0;
}

.eyebrow {
  font-size: 40px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.color {
  color: #9992ba;
}
.eyebrow .line {
  width: 60px;
  height: 3px;
  border-radius: 3px;
  background: white;
  margin-left: 6px;
}

.title {
  font-size: clamp(34px, 6vw, 62px);
  margin: 0 0 16px;
  font-weight: 900;
  line-height: 1.05;
}
.title .accent {
  color: #7182ff;
}

.sub {
  color: white;
  opacity: 0.5;
  margin-top: 16px;
}
.form-wrapper {
  position: relative;
  height: 100%;
}
.card {
  background: white;
  padding: 10px;
  border-radius: 30px;
  position: absolute;
  z-index: 1;
  top: -40px;
  width: 100%;
}
.card-inner {
  background: white;
  color: black;
  border-radius: 24px;
  padding: 10px;
}
.card h2 {
  margin: 0 0 4px;
  font-size: 32px;
  color: #000000;
  text-align: center;
  font-weight: 800;
}
.tiny {
  margin: 0 0 20px;
  font-size: 12px;
  color: #9f9f9f;
  text-align: center;
}

form {
  display: grid;
  gap: 14px;
}
label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: #000000;
  opacity: 0.67;
  font-size: 20px;
}
input,
textarea {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 14px 0px;
  font-size: 14px;
  outline: none;
  background: #cce5ff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
}
input::placeholder,
textarea::placeholder {
  color: #7c7c7c;
}
textarea {
  resize: vertical;
  min-height: 140px;
}

.actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 8px;
}
.btn {
  border: 0;
  background: #fff;
  color: #09005d;
  border: 1.5px solid #09005d;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
#status {
  font-size: 12px;
  color: #4a5568;
  margin: 0;
}

.logo {
  height: 36px;
}

.copyright {
  text-align: center;
  font-size: 14px;
  color: #7a7f8a;

}

.social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.social img {
  width: 20px;
  height: 20px;
  display: block;
}


.footer {
  background: #f5f7f9;
  color: #7b7c7d;
  border-top: 1px solid #ebedf5;
  margin-top: auto;
}
.footer-container {
  display: flex;
  align-items: center;
  gap: 100px;
  padding: 30px 20px;
}
.footer-container .logo {
  height: 36px;
  flex: 0 0 auto;
}

.footer-center {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.copyright {
  margin: 0;
  font-size: 14px;
  color: #7a7f8a;
  text-align: left;
}

.social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.social img {
  width: 16px;
  height: 16px;
  display: block;
}
@media (max-width: 980px) or (max-height: 700px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 20px 40px;
  }
  .copy {
    text-align: left;
  }
  .card {
    position: static;
    width: auto;
    margin-top: -20px;
  }
}

@media (max-width: 520px) {
  .brand {
    order: 0;
  }
  .copyright {
    order: 1;
  }
  .social {
    order: 2;
    justify-content: center;
  }
  .copy {
    min-height: 0;
    gap: 50px;
  }
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .copyright {
    text-align: center;
  }
  .social {
    justify-content: center;
  }
  .card {
    position: static;
    width: auto;
  }
  .form-wrapper {
    position: static;
  }
}


