
@import url("./font.css");

body {
  font-family: YekanBakhFaNum;
  background: #F2F7F6;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  color: #333;
}

.container {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  text-align: center;
  animation: fadeIn 0.8s ease-out;
}

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

.content h1 {
  color: #116B64;
  margin-bottom: 5px;
  font-size: 1.8em;
}

.content p {
  color: #666;
  font-size: 0.9em;
}

.content a {
  color: #666;
  font-size: 0.9em;
  font-weight: 800;
  margin-bottom: 30px;
}

.logo-container {
  width: 100%;
}

.logo-container img {
  width: 40%;
  aspect-ratio: auto;
  margin-right: auto;
  margin-left: auto;
}