@import url('https://fonts.cdnfonts.com/css/inter');

* {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  position: relative;
  z-index: 1;
}

html,
body {
  background-color: darkblue;
  background-repeat: repeat;
}


#cf {
  margin-top: 5px;
  display: flex;
  justify-content: center;
}

body {
  background-image: url("dg.svg");
  margin: 0;
  width: 100%;
  height: 100vh;
  justify-content: center;
  align-items: center;
  color: white;
}

@keyframes change {
  0% {
    opacity: 0;
  }
  
  100% {
    opacity: 1;
  }
  
}

p {
  font-size: 13px;
  margin: 0;
  padding: 0;
  margin-bottom: 10px;
}

pre {
  text-align: left;
  color: white;
  padding: 10px;
  border-radius: 10px;
  font-size: 11px;
  border: solid 1px rgba(255, 255, 255, 0.2);
}

code {
  padding: 0;
  margin: 0;
}

h1 {
  font-size: 18px;
  font-weight: 800;
  padding: 0;
  margin: 0;
}

.headerText {
  width: auto;
  text-align: left;
  font-weight: 800;
  font-size: 17px;
  margin-left: 5px;
  margin: 0;
  padding: 0;
}

.subHeaderText {
  text-align: left;
  font-size: 9px;
  margin: 0;
  padding: 0;
}

.container {
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 10px;
  border: solid 1px rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
  padding: 10px;
  margin: 10px auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.container-tr {
  width: 100%;
  color: white;
  box-sizing: border-box;
  margin: 10px auto;
}

h1 {
  color: white;
}

hr {
  height: 1px;
  border: 0;
  border-top: solid 1px rgba(255, 255, 255, 0.2);
  margin-left: -10px;
  margin-right: -10px;
  margin-top: 5px;
  padding-bottom: 5px;
}

.input1,
.button1,
.bgn,
.form-check {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 10px;
  border: solid 1px rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  font-size: 16px;
  animation: slideIn 1s ease;
  overflow: hidden;
}

.button2 {
  border-radius: 0px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.bgn {
  display: block;
  margin-top: 10px;
  padding: 5px;
}

input:placeholder {
  color: white;
  font-weight: 0;
  font-size: 11px;
}

.form-check {
  padding: 10px;
  color: white;
  font-size: 13px;
  outline: 1px solid transparent;
  font-variant-caps: larger;
  transition: letter-spacing 500ms ease, color 300ms ease, font-weight 300ms ease, outline-offset 300ms ease, outline-width 300ms ease, outline 500ms ease;
}

.form-check:hover,
.form-check:focus {
  background-color: white;
  color: #0061ff;
  font-weight: 800;
  letter-spacing: 3px;
  outline: 2px solid #0061ff;
}

.button1 {
  width: 100%;
  height: auto;
  color: white;
  border: solid 1px rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 10px;
  font-size: 13px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, letter-spacing 500ms ease, text-shadow 300ms ease, color 300ms ease, font-weight 300ms ease, outline-offset 300ms ease-in-out, outline-width 300ms ease-in-out;
  will-change: transform;
  animation: slideIn 1s ease;
}

.button1:hover,
.button1:focus {
  background-color: white;
  color: #0061ff;
  font-weight: 800;
  letter-spacing: 3px;
  outline: none;
}

.button1:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px white;
}

.button1::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #0061ff, transparent);
  transition: transform 0.5s ease;
  will-change: transform;
}

.button1:hover::before {
  transform: translateX(200%);
}

.centered-textarea {
  color: white;
  margin-top: 0px;
  margin-bottom: 0px;
  display: block;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.2);
  border: solid 1px rgba(255, 255, 255, 0.2);
  text-align: left;
  outline: 2px solid transparent;
  transition: outline-offset 300ms ease, outline-width 300ms ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.centered-textarea:focus {
  outline: 2px solid #0061ff;
  outline-offset: -2px;
  outline-width: 2px;
}

.centered-textarea::placeholder {
  color: white;
  font-size: 12px;
}

.noPadding {
  margin: 0;
  padding: 0;
}

.p-header {
  margin-top: 10px;
  margin-left: 10px;
  margin-bottom: 0px;
}

.p-subheader {
  margin-left: 10px;
  font-size: 8px;
  opacity: 0.8;
}

.topBorder {
  border-radius: 0px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom: 0px;
}

.noRadius {
  border-radius: 0px;
}

.withRadius {
  border-radius: 10px;
}

.marginBottom {
  margin-bottom: 10px;
}

.inputLayout {
  height: 40px;
  border-radius: 0px;
  border-bottom: 0px;
}

.asLayout {
  border-bottom: 0px;
}

.asInputLayout {
  color: white;
  height: 40px;
  padding: 10px;
  background-color: transparent;
  border-radius: 0px;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.carouselLayout {
  width: 100%;
  color: white;
  height: auto;
  box-sizing: border-box;
}

.carouselImage {
  width: 100%;
  height: 180px;
  border: solid 1px rgba(255, 255, 255, 0.2);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom: 0px;
  pointer-events: none;
  cursor: default;
}

.border02 {
  border: solid 1px rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
  .carouselImage {
    height: 500px;
  }
}

@keyframes wie1 {
  0% {
    text-shadow: 0 0 0px #0061ff;
  }
  
  50% {
    text-shadow: 0 3px 10px #0061ff;
  }
  
  100% {
    text-shadow: 0 0 0px #0061ff;
  }
}

.pogz {
  text-align: center;
  transition: margin-top 1.5s ease;
  margin-top: 10px;
  font-weight: 800;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  
  50% {
    transform: translateY(-5px);
  }
  
  100% {
    transform: translateY(0px);
  }
}

@keyframes slideIn {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

li {
  margin: 0;
  padding: 0;
}

p,
h1,
h2,
h3,
h4,
label,
ul .container {
  animation: slideIn 0.5s ease;
}


.cb {
  margin: 0;
  padding: 0;
  outline: none;
  display: flex;
  align-items: center;
}

.cbText {
  font-size: 10px;
  margin-left: 5px;
  text-align: center;
  margin-top: 10px;
}

.sweetClass {
  background: transparent;
}

.swal2-popup .swal2-styled:focus {
  box-shadow: none !important;
  outline: none;
}

html.swal2-shown,
body.swal2-shown {
  overflow-y: hidden !important;
  height: auto !important;
}

body.swal2-shown>[aria-hidden='true'] {
  background-color: rgba(0, 0, 0, 0);
  transition: 0.2s filter;
  filter: blur(3px);
}


.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at center, #0061ff, transparent 70%);
  will-change: transform;
  transform-origin: center center;
}

@keyframes circle1 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  
  50% {
    transform: translate(100px, 100px) scale(1.1);
  }
  
  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes circle2 {
  0% {
    transform: translate(0, 0) scale(0.9);
  }
  
  50% {
    transform: translate(-100px, 100px) scale(1);
  }
  
  100% {
    transform: translate(0, 0) scale(0.9);
  }
}

@keyframes circle3 {
  0% {
    transform: translate(0, 0) scale(1.1);
  }
  
  50% {
    transform: translate(50px, -100px) scale(1);
  }
  
  100% {
    transform: translate(0, 0) scale(1.1);
  }
}

@keyframes circle4 {
  0% {
    transform: translate(0, 0) scale(0.8);
  }
  
  50% {
    transform: translate(-50px, -50px) scale(1);
  }
  
  100% {
    transform: translate(0, 0) scale(0.8);
  }
}

.circle:nth-child(1) {
  width: 600px;
  height: 600px;
  top: -100px;
  left: -100px;
  animation: circle1 20s infinite ease-in-out;
}

.circle:nth-child(2) {
  width: 500px;
  height: 500px;
  bottom: -100px;
  right: -100px;
  animation: circle2 25s infinite ease-in-out;
}

.circle:nth-child(3) {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 60%;
  animation: circle3 22s infinite ease-in-out;
}

.circle:nth-child(4) {
  width: 300px;
  height: 300px;
  top: 30%;
  left: 20%;
  animation: circle4 28s infinite ease-in-out;
}

.floating {
  animation: floating 3s ease-in-out infinite;
  will-change: transform;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  opacity: 0;
  will-change: transform, opacity;
}

@keyframes particleFloat {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  
  20% {
    opacity: 1;
  }
  
  80% {
    opacity: 1;
  }
  
  100% {
    transform: translate(var(--moveX), var(--moveY));
    opacity: 0;
  }
}