html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  color: #1f2937;
  min-height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background: radial-gradient(
      900px 600px at 55% 45%,
      rgba(255, 225, 169, 0.6) 0%,
      rgba(255, 232, 160, 0) 62%
    ),
    radial-gradient(
      900px 600px at 8% 52%,
      rgba(70, 241, 127, 0.55) 0%,
      rgba(58, 241, 119, 0) 62%
    ),
    radial-gradient(
      1100px 680px at 92% 10%,
      rgba(190, 241, 214, 0.555) 0%,
      rgba(190, 241, 214, 0) 60%
    ),
    radial-gradient(
      1200px 700px at 15% 102%,
      rgba(87, 168, 255, 0.92) 0%,
      rgba(87, 168, 255, 0.52) 34%,
      rgba(255, 87, 87, 0) 70%
    ),
    radial-gradient(
      1200px 700px at 50% 104%,
      rgba(87, 168, 255, 0.92) 0%,
      rgba(87, 168, 255, 0.55) 34%,
      rgba(87, 168, 255, 0) 70%
    ),
    radial-gradient(
      1200px 700px at 85% 113%,
      rgba(87, 168, 255, 0.92) 0%,
      rgba(87, 168, 255, 0.5) 34%,
      rgba(87, 168, 255, 0) 70%
    ),
    radial-gradient(
      1200px 720px at 96% 18%,
      rgba(10, 218, 131, 0.411) 0%,
      rgba(205, 238, 224, 0) 60%
    ),
    radial-gradient(
      1200px 720px at 4% 10%,
      rgba(205, 238, 224, 0.5) 0%,
      rgba(205, 238, 224, 0) 62%
    ),
    radial-gradient(
      1000px 560px at 86% 56%,
      rgba(243, 97, 158, 0.55) 0%,
      rgba(245, 61, 153, 0.38) 34%,
      rgba(243, 9, 126, 0) 72%
    ),
    linear-gradient(
      90deg,
      rgba(246, 150, 198, 0.18) 74%,
      rgba(246, 150, 198, 0.1) 86%,
      rgba(246, 150, 198, 0) 100%
    ),
    radial-gradient(
      1150px 540px at 78% 70%,
      rgba(245, 131, 179, 0.48) 0%,
      rgba(247, 179, 207, 0) 72%
    ),
    radial-gradient(
      1650px 980px at 36% 106%,
      rgba(87, 168, 255, 0.95) 0%,
      rgba(87, 168, 255, 0.72) 32%,
      rgba(87, 168, 255, 0) 70%
    ),
    linear-gradient(
      200deg,
      #fff8e6 10%,
      #fff1e3 24%,
      #ffdac5 42%,
      rgba(255, 205, 176, 0.82) 58%,
      rgba(247, 179, 207, 0.42) 72%,
      rgba(201, 198, 234, 0.3) 84%,
      rgba(140, 182, 246, 0.26) 92%,
      rgba(87, 168, 255, 0.22) 100%
    ),
    linear-gradient(
      180deg,
      #fff8e6 0%,
      #fff3e2 18%,
      #ffdac5 45%,
      #c9c6ea 64%,
      #9abcf6 80%,
      #57a8ff 100%
    );

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 32px 8px 64px;
}

.wrap {
  width: 100%;
  max-width: 920px;
}

.card {
  background: #ffffff;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  -webkit-box-shadow: 0 12px 30px rgba(17, 24, 39, 0.18);
  -moz-box-shadow: 0 12px 30px rgba(17, 24, 39, 0.18);
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.18);
  overflow: hidden;
  margin-bottom: 28px;
}

.card-body {
  padding: 45px 30px;
}

.hero-title {
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.2px;
  margin: 8px 0 14px;
  font-size: 44px;
}

.hero-sub {
  color: #6b7280;
  margin: 0 0 20px;
  font-size: 15px;
}

.section-title {
  font-weight: 700;
  margin: 4px 0 10px;
  font-size: 20px;
}

.section-text {
  color: #6b7280;
  margin: 0 0 22px;
  font-size: 15px;
}

.btn {
  border: 0;
  background: #7c3aed;
  color: #fff;
  font-weight: 600;
  padding: 12px 18px;
  margin-top: 10px;
  border-radius: 60px;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.06s ease, background 0.18s ease,
    -webkit-box-shadow 0.18s ease;
  transition: transform 0.06s ease, background 0.18s ease, box-shadow 0.18s ease;
  -webkit-box-shadow: 0 6px 16px rgba(124, 58, 237, 0.35);
  -moz-box-shadow: 0 6px 16px rgba(124, 58, 237, 0.35);
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.35);
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.btn:hover {
  background: #6d28d9;
}

.btn:active {
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
}

form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -10px;
}

.field {
  padding: 10px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 280px;
  flex: 1 1 280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

label {
  font-size: 14px;
  color: #1f2937;
  font-weight: 500;
}

.input {
  border: none;
  outline: none;
  background: transparent;
  padding: 10px 0 12px;
  border-bottom: 2px solid #e5e7eb;
  font-size: 16px;
}

::-webkit-input-placeholder {
  color: #9ca3af;
}

:-ms-input-placeholder {
  color: #9ca3af;
}

::placeholder {
  color: #9ca3af;
}

.span-2 {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}

.submit-row {
  margin-top: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
}

.logo-name{
  font-weight: 500;
  font-size: 74px;
  margin-bottom: 180px;
}

.head-section{
  display: flex;
  justify-content: center;
  gap: 120px;
  align-items: normal;
  margin: 20px 0 100px 0;
}

.head-left{
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  min-width: 700px;
}

.visuals img{
  border-radius: 20px;
  width: 342px;
  height: 726px;
}

@media (min-width: 480px) {
  .section-title {
    font-size: 22px;
  }
}

@media (min-width: 900px) {
  .section-title {
    font-size: 26px;
  }
  .hero-sub {
    font-size: 18px;
  }
}

.justify-center{
  display: flex;
  justify-content: center;
}
.text-center{
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .head-section{
    display: block;
    text-align: center;
  }
  .logo-name{
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .logo-name{
    font-size: 54px;
  }

  .hero-title{
    font-size: 32px;
  }

  .head-left{
    min-width: auto;
  }
}

@media (max-width: 500px) {
  .logo-name{
    font-size: 34px;
  }

  .hero-title{
    font-size: 20px;
  }

  .head-left{
    min-width: auto;
  }
}

input.error {
  border: 1px solid red;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.api-message {
  animation: slideIn 0.3s ease;
}

button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
