/* Activate license screen */

.activate-screen {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #101c22;
  color: #ffffff;
}

.activate-header {
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 12px;
}

.activate-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: #e5e7eb;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.activate-main {
  flex: 1;
  padding: 0 16px 96px;
}

.activate-title {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  margin-top: 12px;
  margin-bottom: 8px;
}

.activate-subtitle {
  font-size: 14px;
  line-height: 1.5;
  color: #d1d5db;
  margin-bottom: 24px;
}

.activate-input-wrap {
  margin-top: 8px;
}

.activate-input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #1f2933;
  background: #020617;
  color: #e5e7eb;
  padding: 14px 16px;
  font-size: 14px;
  outline: none;
}

.activate-input::placeholder {
  color: #6b7280;
}

/* Footer */

.activate-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 16px 18px;
  border-top: 1px solid #1f2933;
  background: rgba(16, 28, 34, 0.96);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.activate-btn {
  width: 100%;
  height: 52px;
  border-radius: 14px;
  border: none;
  background: #13a4ec;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(19, 164, 236, 0.35);
}

.activate-success {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
}

.activate-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #10b981;
  color: #ffffff;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.activate-success-text {
  font-size: 15px;
  color: #e5e7eb;
  text-align: center;
}