/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  background: linear-gradient(135deg, #ff6101ff, #ff8a3d);
  min-height: 100vh;
  display: flex;
  flex-direction: column; /* IMPORTANT */
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: white;
}

.center-container {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;

  flex: 1; /* pushes footer down */
  justify-content: center;
}

.site-footer {
  width: 100%;
  padding: 16px 0;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #f7f4e1ff;
  opacity: 0.9;
}

/* Centered content */
.center-container {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* Logo */
.logo {
  width: min(420px, 90vw);
  height: auto; /* IMPORTANT: prevents distortion */
  margin-bottom: 32px
}

/* Text */
.nothing-text {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 24px;
  color: #f7f4e1ff;
  text-align: center;
}

.email-text {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 18px;
  color: #f7f4e1ff;
  text-align: center;
}

/* Form (TARGET TAGS, not .form) */
.center-container form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.center-container input,
.center-container textarea {
  font-family: "Manrope", sans-serif;
  padding: 12px 14px;
  border-radius: 8px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  outline: none;
  background-color: #f7f4e1ff;
}

.center-container textarea {
  resize: vertical;
  min-height: 120px;
}

.center-container button {
  font-family: "Changa", sans-serif;
  font-optical-sizing: auto;
  font-size: 18px;
  font-weight: 600;
  padding: 12px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  background: #f7f4e1ff;
  color: #ff6101ff;
  transition: transform 0.15s ease, opacity 0.15s ease;
  width: auto;
  align-self: center;
  padding-left: 5%;
  padding-right: 5%;
}

.center-container button:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.center-container button:active {
  transform: translateY(0);
}
