body {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  min-height: 60vh;
  padding-top: 40px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('https://media2.giphy.com/media/v1.Y2lkPTc5MGI3NjExbnlxYXc4bXFybWhpbW1haWdlb2NuZTVuZ3NiMzRraHlwaHR1eWQzZyZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/xT1XH3NIegS0FBc1K8/giphy.gif') center center / cover no-repeat fixed;
}

* {
  box-sizing: border-box;
  font-family: sans-serif;
}

.login, .b1 {
  width: 320px;
  height: 450px;
  margin: 30px auto;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s ease;
  border: 2px solid #00ffff;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.6),
    0 0 10px rgba(0, 255, 255, 0.4);
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards, pulseGlow 3s ease-in-out infinite;
}

/* ==== LOGIN BLOCK ==== */
.login {
  background:
    linear-gradient(rgba(47, 45, 45, 0.7), rgba(0, 0, 0, 0.8)),
    url(https://media2.giphy.com/media/v1.Y2lkPTc5MGI3NjExaXo2OHhxMDFhdXd4aTN0Njg3MTJjaXBnczdvMGRpcG0yYzR2c201aCZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/bqm6WOjuLu480/giphy.gif) center/cover no-repeat;
}

/* ==== GENERIC BLOCK ==== */
.b1 {
  background-color: black;
}

/* ==== BLOCK WITH GIF BACKGROUND ==== */
.b1:nth-child(4) {
  background:
    linear-gradient(rgba(47, 45, 45, 0.7), rgba(0, 0, 0, 0.8)),
    url(https://media4.giphy.com/media/v1.Y2lkPTc5MGI3NjExZnQyNDM1OXBtcnlwOWozNmVjdmxveGJtdzgxa2FjMG5lMXRsZ3A0OCZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/X3k9OvNZL7ccg/giphy.gif) center/cover no-repeat;
  padding: 15px 0;
}

* .wcommunity_covered .wcommunity_wrap,
* .wcommunity_cover {
  border-radius: 20px;
}

.login:hover, .b1:hover {
  transform: scale(1.02);
}

.login .form {
  width: 100%;
  height: 100%;
  padding: 15px 25px;
}

/* ==== TEXT ==== */
h2, h1, p {
  text-align: center;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}

h2 {
  color: #FFF;
  font-weight: normal;
  font-size: 18px;
  margin-top: 30px;
  margin-bottom: 20px;
}

h1, h2 {
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
}

p {
  color: #FFF;
  font-weight: bold;
  line-height: 20pt;
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 10px;
}

p b {
  color: aqua;
}

p i {
  text-transform: uppercase;
  background-image: linear-gradient(
    -225deg,
    #1ed0f3 0%,
    #e22c87 29%,
    #ff1361 67%,
    #fff800 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
}

h1 {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 24px;
  margin-top: 20px;
  margin-bottom: 20px;
  background-image: linear-gradient(
    -225deg,
    #d7f8ff 0%,
    #40ff32 29%,
    #ff7ee3 67%,
    #fff800 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
}

/* ==== ANIMATIONS ==== */
@keyframes textclip {
  to {
    background-position: 200% center;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow:
      0 10px 30px rgba(0, 0, 0, 0.6),
      0 0 10px rgba(0, 255, 255, 0.4),
      0 0 20px rgba(0, 255, 255, 0.2);
  }
  50% {
    box-shadow:
      0 10px 30px rgba(0, 0, 0, 0.6),
      0 0 15px rgba(0, 255, 255, 0.8),
      0 0 30px rgba(0, 255, 255, 0.5);
  }
}

/* ==== OTHER ELEMENTS ==== */
section {
  display: block;
  border: 1px solid rgba(255,255,255,.1);
}

.priv {
  width: 100%;
  height: 100%;
  margin: 0px;
}

option {
  background-color: rgba(62, 57, 57, 0.8);
}

.login .form input, select {
  width: 100%;
  height: 40px;
  margin-top: 20px;
  background: rgba(255,255,255,.3);
  border: 1px solid rgba(255,255,255,.1);
  padding: 0 20px;
  color: #FFF;
  border-radius: 12px;
  font-size: 14px;
  transition: background 0.3s ease, border 0.3s ease;
  font-weight: bold;
}

.login .form input:hover,
.login .form input:focus {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255,255,255,.8);
  outline: none;
}

.login .form select {
  cursor: pointer;
}

::-webkit-input-placeholder {
  color: #DDD;
}

.login .form input.submit {
  height: 45px;
  background: linear-gradient(to right, #00ffaa, #00aaff);
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.5px;
  margin-top: 40px;
  font-weight: bold;
  border: none;
  box-shadow: 0 0 15px rgba(0,255,255,0.3);
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.login .form input.submit:hover {
  background: linear-gradient(to right, #00aaff, #00ffaa);
  box-shadow: 0 0 25px rgba(0,255,255,0.6);
}

.highlight-sale {
  text-transform: uppercase;
  background-image: linear-gradient(
    -225deg,
    #ff00c8 0%,
    #ff007d 29%,
    #ff4d00 67%,
    #faff00 100%
  );
  background-size: 200% auto;
  background-clip: text;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: saleclip 2s linear infinite;
  font-weight: bold;
}

@keyframes saleclip {
  to {
    background-position: 200% center;
  }
}

.login.auth {
  background:
    linear-gradient(rgba(47, 45, 45, 0.7), rgba(0, 0, 0, 0.8)),
    url('https://media4.giphy.com/media/v1.Y2lkPTc5MGI3NjExajZjYTNyMTBzc2Z6ZTZ3OW5kcWUwejg3eWVuNTYyZXlmOHVzOWRuNyZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/tptFQ8QAJYYvu/giphy.gif') center/cover no-repeat;
  border: 2px solid #00ffff;
  animation: fadeInUp 0.6s ease forwards, pulseGlow 3s ease-in-out infinite;
}