/* styles.css */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

body {
  font-family: "Roboto", sans-serif;
  background-color: #000000;
  color: white;
}

body {
  transition: background-color 0.3s, color 0.3s;
}

.light-theme {
  background-color: white;
  color: black;
}

.dark-theme {
  background-color: black;
  color: white;
}

.container {
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  /* background-color: #000000; */
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form {
  display: flex;
  flex-direction: column;
}

form input[type="text"] {
  margin: 10px 0;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  outline: none;
}

form button {
  margin: 10px 0;
  padding: 5px;
  font-size: 16px;
  width: 60px;
  border: none;
  border-radius: 2px;
  background-color: rgb(0, 154, 230);
}

form button:active {
  background-color: rgb(0, 95, 143);
}

#result {
  margin-top: 20px;
}

#result p {
  margin-bottom: 10px;
}

#result a {
  text-decoration: none;
  color: #007bff;
}
.supportContact {
  font-size: 20px;
  text-align: end;
  color: rgb(255, 255, 255);
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 10px;
}

.supportContact a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  border: 2px solid rgb(0, 0, 0);
  padding: 0px 10px;
  border-radius: 20px;
}

.supportContact a {
  /* margin: 100px; */
  /* padding: 15px 40px; */
  border: none;
  outline: none;
  color: #fff;
  cursor: pointer;
  /* position: relative; */
  z-index: 0;
  border-radius: 12px;
}
.supportContact a::after {
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #333;
  left: 0;
  top: 0;
  border-radius: 10px;
}
.supportContact a::before {
  content: "";
  background: linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #ff00c8,
    #ff0000
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 600%;
  z-index: -1;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  filter: blur(8px);
  animation: glowing 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
  opacity: 0;
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.supportContact a:hover::before {
  opacity: 1;
}

.supportContact a:active:after {
  background: transparent;
}

.supportContact a:active {
  color: #000;
  /* font-weight: bold; */
}

.eL {
  font-size: 10px;
  text-align: end;
  color: rgb(49, 49, 49);
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 10px;
  font-size: 12px;
}

@media screen and (max-width: 1026px) {
  .supportContact a::before {
    opacity: 1;
  }
}
