:host {
  display: block;
}

* {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.login-card-page-one {
  border-radius: 8px;
  background-color: var(--card-background-color);
}

.auth-section {
  border: 1px solid #d3d3d3;
  padding: 16px;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
}

.auth-section p {
  font-size: 0.75rem;
  color: var(--text-secondary-color);
  margin-bottom: 12px;
}

.auth-buttons {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.auth-buttons button {
  background-color: #001e57;
  width: 100%;
  padding: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

p {
  margin: 0;
}

.security-box {
  color: #001e57;
  background-color: #eff6ff;
  font-size: 0.75rem;
  display: flex;
  gap: 8px;
  padding: 8px;
  margin-top: 8px;
}

.security-box svg {
  width: 16px;
  aspect-ratio: auto;
}

.message-sub-text {
  font-size: 0.85rem;
  color: var(--text-secondary-color);
}
