@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter_24pt-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter_24pt-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

body {
  height: 100vh;
  font-family: 'Inter', sans-serif
}

.container {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 600px;
  text-align: center;
  padding: 32px;
  margin: 0 auto;
  margin-top: 50px;
}

@media (max-width: 768px) {
  .container {
    box-shadow: none;
  }
}

@media (max-width: 576px) {
  .container {
    margin: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 42px 18px 18px 18px;
  }
}

.header {
  display: flex;
  position: relative;
  padding: 20px;
  margin-bottom: -42px;
  background-color: #faffd6;
  border-radius: 10px;
  flex: 1.5;
}

@media (max-width: 768px) {
  .header {
    flex: 1;
  }
}

@media (max-width: 576px) {
  .header {
    margin-bottom: 0;
  }
}

.wisa {
  position: absolute;
  max-width: 145px;
  left: -16px;
  top: -16px;
}

@media (max-width: 400px) {
  .wisa {
    max-width: 120px;
  }
}

.header-content {
  margin-left: 120px;
  text-align: start;
}

@media (max-width: 400px) {
  .header-content {
    margin-left: 90px;
  }
}

.header-content h1 {
  font-size: 32px;
  color: #333;
  color: #333;
  margin-top: 0;
}

@media (max-width: 576px) {
  .header-content h1 {
    font-size: 20px;
  }
}

.header-content p {
  font-size: 14px;
  color: #777;
  border-top: 1px solid #777;
  padding-top: 8px;
  margin-bottom: 0;
}


.logo {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: 1;
}

@media (max-width: 576px) {
  .logo {
    display: none;
  }
}

.logo img {
  max-width: 80px;
}

.content {
  background-color: #e5f6ff;       
  padding: 12px 28px;
  margin-left: 60px;
  text-align: end;
  border-radius: 10px;
}

@media (max-width: 576px) {
  .content {
    margin-top: 20px;
    margin-left: 0;
  }
}

.content h2 {
  font-size: 18px;
  color: #333;
  margin-top: 20px;
}

.content p {
  font-size: 12px;
  color: #555;
}

.footer {
  display: flex;
  font-size: 12px;
  padding: 10px;
  margin-top: 20px;
  color: #999;
  background-color: #eeeeee;
  border-radius: 10px;
}

.footer-error {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex: 1;  
  text-align: left;
}

.footer-error p {
  margin: 0;
}

.footer-link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.footer-link img {
  max-width: 80px
}

.footer-link img:hover {
  opacity: 0.9;
}

.fill { flex: 1 }
.flex { display: flex }
.items-center { align-items: center }
.justify-end { justify-content: flex-end }

@media (min-width: 768px) {
  .hod {
    display: none;
  }
}
