.login-container {
  width: 20rem;
  display: flex;
  flex-direction: column;
}

.login-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.login-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.375rem;
}

.login-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.login-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.form-input {
  width: 100%;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-secondary);
  border-radius: .25rem;
  padding: 0.5rem;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 500;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-input#otp {
  text-transform: uppercase;
}

.form-input::placeholder {
  color: var(--text-secondary);
}

.form-input:focus {
  border-color: var(--text-secondary);
}

.btn-submit {
  width: 100%;
  height: 3rem;
  background-color: var(--bg-quaternary);
  color: var(--text-primary);
  border: 1px solid var(--border-secondary);
  border-radius: .25rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 0.375rem;
  transition: background-color 0.2s ease;
}

.btn-submit:hover {
  background-color: var(--bg-hover);
}