:root {
  --bg-principal: #409bb8;
  --text-principal: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: #f5f5f5;
}

.main-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 1rem;
}

.container {
  width: 100%;
  max-width: 690px;
  margin-inline: auto;
  text-align: center;
}

.icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.icon-badge {
  background-color: #fef3c6;
  border-radius: 999px;
  padding: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon {
  width: 3rem;
  height: 3rem;
}

.icon path {
  stroke: #e17100;
  fill: none;
}

.text-block {
  margin-block: 1rem;
}

.text-block h1 {
  margin-bottom: 1rem;
  font-size: 1.9rem;
  line-height: 1.2;
  font-weight: 700;
}

.text-block p {
  font-size: 1rem;
  line-height: 1.4;
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  margin-block: 1rem;
}

.logo-box {
  background-color: #ffffff;
  border-radius: 6px;
  padding: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logo-box img {
  max-width: 240px;
  height: auto;
  display: block;
}

.button-wrapper {
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 1.8rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--bg-principal);
  border-color: var(--bg-principal);
  color: var(--text-principal);
}

.btn.btn-primary {
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

@media (max-width: 480px) {
  .text-block h1 {
    font-size: 1.5rem;
  }

  .logo-box img {
    max-width: 180px;
  }
}
