* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  user-select: none;
  font-family:cursive  ;
}

body {
  overflow: hidden;
  background-color: #07060f ;
  display:flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.main {
  margin-top: 20px;
  display:flex;
  align-items: center;
  justify-content: center;
  width: 500px;
  height: 600px;
}

.mform {
  margin-top: -20px;
  backdrop-filter: blur(2px);
  padding: 20px 0px 15px 0px;
  display:flex;
  align-items: center;
  flex-direction: column;
  border: solid #aaaaaa33 2px ;
  z-index: 2;
  background-color: #aaaaaa2a;
  min-width: 330px;
  max-width: 330px;
  height: 450px;
  border-radius: 8px;
  box-shadow: 0px 0px 30px #000000ab;
}

.circle {
  position: relative;
  border-radius: 50%;
  min-width: 170px;
  max-width: 170px;
  min-height: 170px;
  max-height: 170px;
  transition: 0.2s;
}

.circ {
  box-shadow:0px 0px 5px #000, 0px 0px 100px #fffa;
}

.cir1 {
  top: -210px;
  left: 90px;
  background-image: linear-gradient(to bottom ,#0c4dad, #2b8bd4);
}

.cir2 {
  top: 200px;
  left: -122.5px;
  background-image: linear-gradient(to right, #d6400f ,#efa039);
}

.top {
  font-weight: 700;
  margin-top: 20px;
  color: white;
  letter-spacing: 1px;
  font-size: 28px;
  transition: 0.2s;
}

.top:hover {
  font-weight: 700;
  margin-top: 20px;
  color: white;
  letter-spacing: 1px;
  font-size: 28px;
  text-shadow: 0px 0px 20px #fff6;
}

.inps {
  width: 85%;
  font-weight: 500;
  font-size: 15px;
  color: white;
  margin-top: 25px;
}

.inp {
  font-size: 17px;
  outline: solid 2px #aaa5;
  letter-spacing: 1px;
  color: white;
  border-radius: 3px;
  margin-top: 8px;
  background-color: #aaaaaa23;
  border: none;
  padding-left: 8px;
  height: 40px;
  width: 100%;
  transition: 0.2s;
}

.inp::placeholder {
  font-size: 14px;
}

.inp:hover {
  padding-left: 15px;
  height: 40px;
  width: 100%;
}

.inp:focus-visible {
  border-radius: 3px;
  margin-top: 8px;
  background-color: #aaaaaa23;
  font-size: 17px;
  border: none;
  padding-left: 8px;
  height: 40px;
  width: 100%;
}

.logbtn {
  padding-bottom: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  height: 50px;
  font-weight: 700;
  margin-top: 40px;
  width: 85%;
  color: black;
  background-color: white;
  transition: 0.2s;
}

.logbtn:hover {
  cursor: pointer;
  background-color: #ccc;
}

.othways {
  display: flex;
  justify-content: space-between;
  width: 85%;
  height: 35px;
  margin-top: 25px;
}

.othch {
  text-align: center;
  width: 130px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  font-weight: 700;
  font-size: 14px;
  color: white;
  padding: 5px 0px;
  background-color: #fff4;
  transition: 0.2s;
}

.othch:hover {
  cursor: pointer;
  background-color:#fff6 ;
}

.light {
  background-color: #0c101d;
}