* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "IBM Plex Sans Arabic", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: #ffffff;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.container {
  width: 100%;
  max-width: 640px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.logos img {
  display: block;
  max-width: 100%;
  width: 280px;
  max-height: 80px;
  height: auto;
}

h1 {
  margin: 0;
  font-size: clamp(1.7rem, 2.2vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.subtitle {
  margin: 0;
  font-size: 1rem;
  color: #4b5563;
}

.msg-main {
  font-size: 1rem;
  font-weight: 600;
}

.actions {
  margin-top: 8px;
}

.btn-link {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  background: #145957;
  color: #f9fafb;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.btn-link:hover {
  background: #0f3f3e;
}

@media (max-width: 640px) {
  body {
    padding: 16px;
  }

  .logos {
    flex-direction: column;
    gap: 10px;
  }
}