.text1 {
  text-align: center;
  color: #ffffff;
  backdrop-filter: blur(70px);
  background: linear-gradient(#ffffff30, #ffffff37);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25); /* тінь */
}
.login-form {
  padding: 2.5rem; /* внутрішні відступи */
  border-radius: 17px; /* округлення */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25); /* тінь */
  max-width: 450px; /* ширина */
  margin: 9rem auto; /* центр + відступ зверху */
  padding-bottom: 1em;
  backdrop-filter: blur(7px);
  background: linear-gradient(#ffffff30, #ffffff37);
  color: rgb(10, 9, 9);
}
.login-text {
  text-align: center;
  padding-bottom: 0.5em;
  padding-bottom: 1em;
}
.button {
  text-align: center;
  margin: 1.5em;
}

.btn-purple {
  background-color: blueviolet;
  color: white;
  border-radius: 6px;
  transition: background-color 0.2s;
}

.btn-purple:hover,
.btn-purple:focus,
.btn-purple:active {
  background-color: #7a1fd1; /* можна змінити на потрібний відтінок */
  color: white; /* важливо! */
  text-decoration: none; /* якщо треба прибрати підкреслення */
}

.help-link {
  color: rgb(97, 29, 136);
  text-decoration: underline;
  font-weight: 500;
}
.help-link:hover {
  color: rgb(55, 11, 78);
  text-decoration: underline;
}
.mb-4 {
  text-align: center;
  margin-top: 1em;
}
body {
  /* background-color: rgb(170, 62, 237); */
  background-image: url("../img/8.jpg");
  background-size: cover;
  background-position: center;
}
.form-control:focus {
  border-color: blueviolet;
  box-shadow: 0 0 0 0.25rem rgba(138, 43, 226, 0.25);
}

.modal-body {
  margin-left: 1.2em;
  margin-right: 1.2em;
}

.modal-header {
  justify-content: center;
  position: relative;
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 1em;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  position: absolute;
}

.required-star {
  color: red;
  margin-left: 5px;
  font-weight: 700;
  display: none;
}

.required-star.show {
  display: inline;
}

.marquee {
  display: flex;
  justify-content: center;
  gap: 1rem;
  white-space: nowrap;
  overflow: hidden;
  flex-wrap: nowrap;
}

.marquee span {
  display: inline-block;
}
