:root {
  --bg-color: #060e23;
  --main-color: #64ea64;
  --white-color: #f0f0f0;
  font-family: "Poppins", sans-serif;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
}

section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

a {
  color: var(--main-color);
}

.container {
  display: flex;
  padding: 16px;
  border-radius: 8px;
  background-color: #1a2753;
  z-index: 1;
}

.image-container {
  background-color: white;
  border-radius: 8px;
  width: 50%;
}

#image-registration {
  width: 95%;
  height: 95%;
}

.form-container {
  width: 50%;
  text-align: left;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: var(--white-color);
}

.form-wrapper {
  width: 85%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

h2 {
  font-size: 26px;
}

form {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  margin-top: 24px;
}

p {
  font-size: 16px;
}

.input-container {
  position: relative;
}

.input {
  padding-right: 40px;
  padding: 18px 0px 18px 10px;
  font-size: 16px;
  border-radius: 8px;
  background-color: var(--bg-color);
  color: var(--white-color);
  border: 2px solid var(--white-color);
  outline: none;
  width: 100%;
}

.input:focus{
  border: 2px solid var(--main-color);
}

.input-text {
  margin-top: 16px;
}

#password {
  margin-top: 16px;
  width: 100%;
}

.cont-checkbox {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-right: 4px;
}

button {
  margin-top: 36px;
  padding: 15px 0px 15px 0px;
  font-size: 16px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  background-color: var(--main-color);
  font-weight: bold;
  transition: 0.2s;
}

button:hover {
  opacity: 0.8;
}

.show-password {
  position: absolute;
  right: 10px;
  top: 62%;
  transform: translateY(-50%);
  cursor: pointer;
}

.show-password i {
  font-size: 18px;
}

/* STELLE */

.stars {
  width: 1px;
  height: 1px;
  position: absolute;
  background: white;
  animation: twinkle 8s infinite linear;
}

.shooting-star {
  position: absolute;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, #64ea64, transparent);
  animation: shoot 3s infinite ease-in;
}

.shooting-star:nth-child(1) {
  top: 20%;
  left: -100px;
  animation-delay: 0s;
}

.shooting-star:nth-child(2) {
  top: 35%;
  left: -100px;
  animation-delay: 1s;
}

.shooting-star:nth-child(3) {
  top: 50%;
  left: -100px;
  animation-delay: 2s;
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 0.8;
  }

  50% {
    opacity: 0.4;
  }
}

@keyframes shoot {
  0% {
    transform: translateX(0) translateY(0) rotate(25deg);
    opacity: 1;
  }

  100% {
    transform: translateX(120vw) translateY(50vh) rotate(25deg);
    opacity: 0;
  }
}

#logo{
  display: none;
}

/* Additional twinkling stars with different animation timing */
.stars::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 1px;
  background: white;
  animation: twinkle 6s infinite linear reverse;
}

#logo-bottom{
  display: none;
}


/* RESPONSIVE */
@media screen and (max-width: 900px) {
  section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 1rem;
  }

  .container {
    display: flex;
    flex-direction: column;
    padding: 16px;
    border-radius: 8px;
    background-color: #1a2753;
    z-index: 1;
    width: 90%;
  }

  .image-container {
    background-color: white;
    border-radius: 8px;
    width: 100%;
  }

  #image-registration {
    display: none;
  }

  .form-container {
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--white-color);
  }

  .form-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
  }

  form {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }
  
  #logo-bottom {
    display: block;
    width: 70px;
    margin-bottom: 8px;
  }
}