html {
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  font-family: 'David Libre', serif;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
}

.button-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.button {
  position: relative;
  display: block;
  width: 300px;
  padding: 20px;
  background-color: black;
  color: white;
  text-align: center;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.2em;
  clip-path: polygon(5% 10%, 95% 5%, 95% 25%, 100% 90%, 10% 95%, 5% 70%, 10% 40%);
  transition: transform 0.2s;
  z-index: 1;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
}

.button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.button:disabled:hover {
  transform: translateY(0);
}

.button:disabled:active {
  transform: translateY(0);
}

.button:hover {
  transform: translateY(3px);
}

.button:active {
  transform: translateY(6px);
}

.button-wrapper:last-child {
  margin-bottom: 40px;
}

.shadow {
  position: absolute;
  top: 24px;
  left: 0;
  width: 320px;
  height: 80px;
  background: repeating-linear-gradient(
    45deg,
    black,
    black 5px,
    transparent 5px,
    transparent 10px
  );
  clip-path: polygon(0% 10%, 100% 0%, 97% 15%, 97% 90%, 3% 100%, 0% 95%, 3% 40%);
  z-index: 0;
  pointer-events: none;
}

.box {
  position: relative;
  display: block;
  width: 380px;
  padding: 40px;
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: black;
  color: white;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.2em;
  clip-path: polygon(2% 3%, 95% 3%, 97% 25%, 100% 97%, 4% 96%, 2% 70%, 10% 40%);
  transition: transform 0.2s;
  z-index: 1;
}

.box .title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.box li {
  text-align: left;
  margin-left: -30px;
}

.box a {
  color: white;
  text-decoration: none;
}

.box a:hover {
  text-decoration: underline;
}

.corner-black {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  background: black;
  clip-path: polygon(96% 96%, 99% 23%, 100% 20%, 100% 100%, 16% 100%, 16% 98%, 60% 95%, 61% 97%);
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.corner-hatch {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  background: repeating-linear-gradient(
    45deg,
    black,
    black 5px,
    transparent 5px,
    transparent 10px
  );
  clip-path: polygon(95% 95%, 97% 26%, 100% 20%, 100% 100%, 16% 100%, 19% 97%, 61% 93%, 64% 98%);
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

/* Utility classes */
.text-xs {
  font-size: 12px;
}

.text-sm {
  font-size: 14px;
}

.text-base {
  font-size: 16px;
}

.text-white {
  color: white;
}

.text-red-400 {
  color: #f87171;
}

.text-gray-400 {
  color: #9ca3af;
}

.mt-2 {
  margin-top: 8px;
}

.mt-4 {
  margin-top: 16px;
}

.mt-8 {
  margin-top: 32px;
}

.mb-4 {
  margin-bottom: 16px;
}

.mb-8 {
  margin-bottom: 32px;
}

.my-8 {
  margin-top: 32px;
  margin-bottom: 32px;
}

.p-4 {
  padding: 16px;
}

.border-2 {
  border-width: 2px;
}

.border-white {
  border-color: white;
}

.underline {
  text-decoration: underline;
}

.font-bold {
  font-weight: bold;
}

.hover\:text-white:hover {
  color: white;
}

/* Form inputs */
input[type="email"],
input[type="text"],
input[type="password"],
textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px;
  background-color: white;
  color: black;
  border: 2px solid black;
  font-family: 'David Libre', serif;
  font-size: 16px;
  box-sizing: border-box;
}

input[type="email"]:focus,
input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus {
  outline: none;
  border-color: #333;
}

input[type="email"]::placeholder,
input[type="text"]::placeholder,
input[type="password"]::placeholder,
textarea::placeholder {
  color: #666;
}

