@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;700&family=IBM+Plex+Mono&display=swap');

body {
  background-image: url(./images/3607424.jpg);
  background-size: 100%;
}

#all {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 350px;
  height: 690px;
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(300deg, #ff0057, #001, #00a4ff);
  background-size: 120% 120%;
  animation: gradient-animation 12s ease infinite;
  gap: 15px;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.tittle {
  font-family: IBM Plex Mono;
  margin: 5px;
}

#container {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

section {
  height: 95vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.input {
  border-radius: 5px;
  flex-direction: row;
  text-align: center;
  width: 250px;
  height: 30px;
  border: purple;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.356);
  font-size: 16px;
}

.font {
  font-family: IBM Plex Mono;
  font-size: 18px;
}

.font2 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

::-webkit-input-placeholder {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-style: bold;
  font-size: 14px;
}

select {
  border-radius: 5px;
  flex-direction: row;
  text-align: center;
  width: 250px;
  height: 30px;
  border: purple;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.356);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
}

select:has(option[value=""]) {
  background-color: rgba(0, 0, 0, 0.356);
  color: #fff;
}

option{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #001;
}

#gendertittle {
  margin: 10px;
}

#gender {
  display: flex;
  gap: 20px;
}

.sex {
  margin: 0;
}

.link {
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  font-family: IBM Plex Mono;
  background-color:rgba(0, 0, 17, 0.777);
  margin: 0px;
  border-radius: 15px;
  border: purple;
  width: 200px;
  height: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.link:hover{
  background-color: rgba(71, 0, 71, 0.308);
}

#checkbox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}