* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: white;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  text-align: center;
}

.official-website {
  background-color: #f0f0f0;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
}

.logo-container {
  width: 300px;
  height: 300px;
  background-color: #b8041f;
  border-radius: 50%;
  /* border: 8px solid #4ade80; */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  padding: 1rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-dot {
  width: 30px;
  height: 30px;
  background-color: #ef4444;
  border-radius: 50%;
  margin-right: 10px;
}

.logo-text {
  color: white;
  font-size: 36px;
  font-weight: bold;
}

.logo-text span {
  color: #4ade80;
}

.welcome-text {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.step-text,
.security-text {
  color: #666;
  margin-bottom: 5px;
}

.robot-check {
  background-color: #22c55e;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: transform 0.2s, background-color 0.2s;
  margin-top: 20px;
}

.robot-check:hover {
  background-color: #16a34a;
  transform: scale(1.05);
}

.arrow {
  margin-left: 10px;
  font-size: 24px;
}

@media (max-width: 768px) {
  .logo-container {
    width: 200px;
    height: 200px;
  }

  .logo-text {
    font-size: 24px;
  }

  .logo-dot {
    width: 20px;
    height: 20px;
  }

  .welcome-text {
    font-size: 24px;
  }

  .robot-check {
    font-size: 16px;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .logo-container {
    width: 150px;
    height: 150px;
    border-width: 6px;
  }

  .logo-text {
    font-size: 18px;
  }

  .logo-dot {
    width: 15px;
    height: 15px;
    margin-right: 5px;
  }

  .welcome-text {
    font-size: 20px;
  }

  .step-text,
  .security-text {
    font-size: 14px;
  }

  .robot-check {
    font-size: 14px;
    padding: 8px 16px;
  }

  .arrow {
    font-size: 18px;
  }
}
