.app-container {
  max-width: 1440px;
  padding-inline: 20px;
  margin: 0 auto;
  @media screen and (min-width: 768px) {
    padding-inline: 80px;
  }
}
body{
  margin: 0; /* Remove default margin */
  height: 100vh;
  background-color: #000;
}

#header {
  background: transparent url('/img/bg.jpg') top center no-repeat;
  background-size: contain;
  @media screen and (min-width: 768px) {
    background-size: auto 400px;
  }
}

.gradient-border {
  border: 2px solid;
  border-color: #15EDE7;
  /* border-image: linear-gradient(to right, #00ffff, #ffff00, #ff0000) 1; */
  /* border-image: linear-gradient(to right, #00FF00, #00ff00) 1; */
  transform: skewX(-15deg);
}
@media screen and (max-width: 512px) {
  body{
    background-size: contain;
    background-position: bottom;
    width: 100%;
    height: auto;
  }

  #victory-logo {
    margin-top: 20px;
  }
  .gradient-border {
    margin: 0 28px;
    /* background-color: #ffff00; */
  }
  .input-wrapper {
    flex-direction: column;
  }

  .input-label {
    text-align: center;
  }
  
  .input-container {
    width: 90%;
    justify-content: flex-between;
  }
  .input-container input[type="email"] {
    outline: none;
    padding: 10px 0;
    text-align: center;
  }
  .signup-text {
    text-align: center;
    margin: 0 20px;
  }
  .input-label {
    /* display: none; */
    margin-left: 15px;
    width: 100%;
  }
  #email {
    position: relative;
    left: 10px;
  }
  .submit-button {
    position: relative;
    right: 5px;
  }
  .footer{
    font-size: xx-small;
  }
}

.gradient-border.error {
  border-image: linear-gradient(to right, #ff0000, #ff0000, #ff0000) 1;
}
.gradient-border.active {
  border-image: linear-gradient(to right, #dafe00, #dafe00, #dafe00) 1;
}
.input-wrapper {
  display: flex;
  align-items: center;
  transform: skewX(15deg);
}
.input-label {
  padding: 0 16px;
  white-space: nowrap;
  background-color: white;
  color: black;
  padding: 10px 0;
  transform: skewX(-15deg);
}
.input-field {
  padding: 0 16px;
  border: none;
  outline: none;
  flex-grow: 1;
  background-color: white;
}
.submit-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 16px;
}

.error-message {
  color: red;
  font-size: 14px;
  display: none;
}

.fade-out {
  animation: fadeOut 0.5s forwards;
}
.fade-in {
  animation: fadeIn 0.5s forwards;
}
@keyframes fadeOut {
  to {
    opacity: 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.success-message {
  display: none;
  padding: 16px;
  background: #dafe00;
  color: black;
  text-align: center;
  transform: skewX(-15deg);
}

dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
}

dialog {
  margin: auto;
  transform: none;
}

.hide-scrollbar::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.hide-scrollbar {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.styled-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 16px;
  background-color: black;
  position: relative;
  overflow: hidden;
  transform: skewX(-15deg);
}

.styled-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  padding: 2px; /* Adjust the padding to control border thickness */
  /* background: linear-gradient(to right, #00ffff, #ffff00, #ff0000); */
  background: #15EDE7;
  -webkit-mask: 
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
  mask: 
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
          mask-composite: subtract;
}

.styled-link .arrow {
  margin-left: 10px;
  font-size: 20px;
  display: inline-block;
  transition: transform 0.3s;
  transform: skewX(15deg);
}

.styled-link:hover .arrow {
  /* transform: translateX(5px); */
}

/* Styles for Privacy policy and T&C */
/* See - https://www.termsfeed.com/live/125360f2-1e71-44ef-b9cc-fe3b42648e08 */
.dialog-content {
  body {
    background: #fff;
    color: #000;
    font-size: 16px;
    line-height: 28px;
    margin: 0;
  }
  h1 {
    font-size: 36px;
  }
  h1,
  h2 {
    font-weight: 700;
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 24px;
  }
  h3,
  h4 {
    font-weight: 700;
  }
  h4 {
    font-size: 20px;
  }
  h5 {
    font-size: 16px;
  }
  h5,
  h6 {
    font-weight: 700;
  }
  h6 {
    font-size: cacl(16px);
  }
  a {
    text-decoration: none;
    cursor: pointer;
    color: #000;
  }
  a:hover {
    text-decoration: underline;
  }
}
