:host {
  display: block;
}

* {
  box-sizing: border-box;
}

p {
  margin: 0;
}

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

.successful-section {
  border: 1px solid #d3d3d3;
  margin-top: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  background-color: #f0fbf7;
}

.input-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.successful-section svg {
  color: #00c951;
  width: 32px;
  aspect-ratio: 1/1;
}

span {
  text-align: center;
}

span:nth-of-type(1) {
  font-weight: 500;
  color: var(--text-secondary-color);
  font-size: 0.85rem;
}

button {
  background-color: #001E57;
  width: 100%;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
}
