@font-face {
  font-family: 'Chakra Petch';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./chakra.f34dba119079.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

body {
  font-family: 'Chakra Petch', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  background: linear-gradient(to left, #004293 0%, #00142D 100%);
  color: white;
  overflow: hidden;
}

/* Outer skewed box */
.container {
  transform: skewX(-5deg);
  background: #004293;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.4);
  width: 90%;
  max-width: 500px;
}

/* Inner content deskewed */
.container .inner {
  transform: skewX(5deg);
  text-align: center;
}

/* Icon styling */
.success-icon {
  font-size: 72px;
  color: #2ecc71;
  margin-bottom: 20px;
}

/* Message styling */
.message {
  font-size: 22px;
  line-height: 1.6;
}