.text-button {
  display: inline-block;
  padding: 12px 32px; /* делаем кнопку широкой для овальной формы */
  border: 2px solid #00bcd4; /* лазурный (цвет морской воды) */
  border-radius: 999px; /* делает форму овальной */
  color: #00bcd4; /* текст в цвет рамки */
  background: transparent;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;

  /* свечение */
  box-shadow: 0 0 12px rgba(0, 188, 212, 0.6);
}

.text-button:hover {
  background-color: rgba(0, 188, 212, 0.1); /* лёгкий залив при наведении */
  box-shadow: 0 0 20px rgba(0, 188, 212, 0.8);
}
