@import url('../font/stylesheet.css');

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

body {
  font-family: 'TT Norms Std Condensed', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #f5f5f5;
  color: #333;
  min-height: 100vh;
}

.top-bar {
  background-color: #2873B4;
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  letter-spacing: 0.3px;
}

.container {
  max-width: 480px;
  margin: 0 auto;
  background-color: #fff;
  min-height: calc(100vh - 40px);
  padding: 48px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-wrapper {
  margin-bottom: 48px;
}

.logo {
  width: 180px;
  height: auto;
  display: block;
}

.subtitle {
  font-size: 14px;
  color: #555;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
  text-align: center;
}

.title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 20px;
}

.description {
  font-size: 14px;
  color: #666;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-block;
  background-color: #2873B4;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 48px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-bottom: 64px;
}

.btn-primary:hover {
  background-color: #1e5f96;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.green-dot {
  width: 10px;
  height: 10px;
  background-color: #4CAF50;
  border-radius: 50%;
  flex-shrink: 0;
}

.security-title {
  font-size: 14px;
  color: #555;
  font-weight: 500;
}

.security-sub {
  font-size: 12px;
  color: #888;
  margin-top: 2px;
}
