.c {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 60px;
  font-weight: 900;
  font-family:#;
  font-size: 50px;
}

.c2{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -30px;
}

.c3{
  display: flex;
  justify-content: center;
}

.c31{
  margin-left: 15px;
  color: darkblue;
}

.pass {
  text-align: center;
  position: relative;
  align-items: center;
    margin-top: 20px;
    left: 14%;

    background-color: #aaaaaa55;
    padding: 15px;
    font-size: 20px;
    border-radius: 30px;
    border: 2px solid rgb(52, 140, 239);
}

.pass::placeholder {
  color:black;
  opacity: 0.8;
}

.pass:focus::placeholder{
  opacity: 0.6;
}

.name {
  text-align: center;
  position: relative;
  align-items: center;
    margin-top: 50px;
    left: 14%;

    color: black;
    background-color: #aaaaaa55;
    padding: 15px;
    font-size: 20px;
    border-radius: 30px;
    border: 2px solid rgb(52, 140, 239);
}

.name::placeholder{
  color: black;
  opacity: 0.8;
}

.name:focus::placeholder {
  opacity: 0.6;
}

.box{
  margin-left: 0px;
  margin-top: 0px;
  height: 550px;
  width: 400px;
  border-radius: 50px;
  border: 3px solid black;
  background-image: linear-gradient(30deg, #9225f330, #70e0e130);

}

body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
  overflow: hidden;
  position: relative;
}

body::before {
  content: '';
  position: absolute;
  top: -120%;
  left: -150%;
  width: 400%;
  height: 400%;

  background: linear-gradient(135deg, #9ccad4, #b21fbfba, #8dbbfd, #7aa, lightblue);
  background-size: 250% 250%;
  animation: gradientShift 10s ease infinite, gradientRotate 15s linear infinite;
  z-index: -1;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes gradientRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg);
}
}

.cb{
  display: flex;
  justify-content: center;
  margin-top: 25px;
  font-size: 20px;
}
.cb input {
  margin-right: 15px;
}
