
/* ================= Base ================= */
a{ text-decoration:none !important;}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: Arial, sans-serif;
  color: #fff;
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
  background: #000;
}

main {
  min-height: 100vh;
  flex: 1 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* ================= Sections ================= */
section {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  box-sizing: border-box;
}

section:not(.footer-section) {
  min-height: 100vh;
}

/* ================= SECTION 1 ================= */

.para-1 {
  min-height: 100vh;
  background: linear-gradient(135deg, #1d1d1d 50%, #222 50%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}

/* CENTER BLOCK */
.para-1 .repixel-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  transform: translateY(clamp(-4vh, -6vh, -8vh));
  gap: 2.2rem;
}

/* FONT */
@font-face {
  font-family: 'Anta';
  src: url('https://repixel.de/blog/wp-content/themes/micromoon/assets/fonts/Anta.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* H1 */
.para-1 h1 {
  font-size: 2.8rem;
  letter-spacing: 0.6em;
  font-family: 'Anta', Arial, sans-serif !important;
  font-weight: 300;
  text-transform: uppercase;
  color: #AAA;
  text-shadow: 1px 1px 0px black, -1px -1px 1px #CCC;
  margin: 2rem 0 0 0;
}

/* ================= SQUARE ================= */

.square {
  position: relative;
  width: clamp(15%, 20em, 40%);
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  padding: 8px;

  background:
    linear-gradient(270deg, red, orange, yellow, lime, cyan, blue, violet, red),
    linear-gradient(270deg, red, orange, yellow, lime, cyan, blue, violet, red);

  background-size: 200% 100%, 200% 100%;
  background-blend-mode: screen;

  animation: rainbowFlow 6s linear infinite;

  filter: saturate(1.5) brightness(1.2);
}

/* border animation */
.square::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 8px;
  border-radius: inherit;

  background: inherit;
  background-size: inherit;

  animation: rainbowFlow 6s linear infinite reverse;
  animation-delay: -3s;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;

  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;

  z-index: 1;
}

/* inner glass */
.square::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 8px;
  background: rgba(30,30,30,0.4);
  backdrop-filter: blur(8px);
}

/* animation */
@keyframes rainbowFlow {
  from { background-position: 0% 50%; }
  to   { background-position: 200% 50%; }
}

/* ================= FORM ================= */

.sodiform-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-top: -0.5rem;
}

/* password */
.sodipass,
.sodiform-form input[type="password"] {
   border: 1px solid rgba(255,255,255,0.15); 
  padding:.8rem .6rem;
  border-radius: 6px;
  color:/* #4887E9;*/ #CCC;
  font-size: 0.9rem;
  outline: none;
  backdrop-filter: blur(4px);
  transition: border 0.2s ease, box-shadow 0.5s ease;
  text-align:center; width:20rem;
    background:#333;/* ////////////////////////////////// linear-gradient(90deg,red, gold, blue, violet);*/
	margin-top:2px;
}
.sodipass:focus, .sodipass:hover,
.sodiform-form input[type="password"]:focus {
  border: 2px solid rgba(255,255,255,0.4);
  box-shadow: 0 0 8px rgba(255,255,255,0.2);margin-top:0;
}

/* honeypots */
.sodiform-form .hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}