* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', sans-serif;
  background: linear-gradient(
    180deg,
    #1e3a8a 0%,
    #3b82f6 30%,
    #60a5fa 60%,
    #dbeafe 100%
  );
  min-height: 100vh;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  max-width: 400px;
  width: 100%;
  background: linear-gradient(
    180deg,
    white 0%,
    white 45%,
    #2563eb 60%,
    #1e40af 75%,
    #1e3a8a 100%
  );
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 15px;
  display: flex;
  flex-direction: column;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-icon {
  height: 40px;
  width: auto;
  display: block;
}

.logo-text {
  font-size: 24px;
  font-weight: bold;
  color: #1e293b;
  letter-spacing: 1px;
}

/* Main Content - Illustration Area */
.main-content {
  margin: 15px 0 0 0;
}

.illustration-container {
  background-image: url('/images/bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 15px;
  padding: 20px 15px;
  min-height: 250px;
  position: relative;
  overflow: hidden;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
}

.action-buttons .btn {
  margin-bottom: 10px;
}

.action-buttons .btn:last-child {
  margin-bottom: 0;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  background: linear-gradient(
    90deg,
    #16a34a 0%,
    #22c55e 50%,
    #4ade80 70%,
    #86efac 100%
  );
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(74, 222, 128, 0.3);
  cursor: pointer;
  border: none;
  width: 100%;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 222, 128, 0.4);
}

.btn:active {
  transform: translateY(0);
}

.btn-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.btn-icon img {
  width: 24px;
  height: 24px;
  display: block;
  max-width: 100%;
  max-height: 100%;
}

/* Responsive */
@media (max-width: 480px) {
  body {
    align-items: flex-start;
    padding-top: 20px;
  }

  .container {
    padding: 15px 15px;
    border-radius: 15px;
    margin-top: 0;
  }

  .logo-text {
    font-size: 20px;
  }

  .illustration-container {
    min-height: 250px;
    padding: 20px 15px;
  }

  .btn {
    padding: 15px 18px;
    font-size: 15px;
  }
}
