/*WIDTH*/
    .w-40f{
        width: 40%;
    }
    .w-50f{
        width: 50%;
    }
    .w-60f{
        width: 60%;
    }
    .w-70f{
        width: 70%;
    }
    .w-80f{
        width: 80%;
    }
    .w-90f{
        width: 90%;
    }
    /*kirish*/
#input-con{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    padding: 8px;
    margin: 20px 20px;
    border-radius: 10px;
    border: 1px solid #eee;
}
.input-pos{
  margin: 20px 0;
  position: relative;
  height: 40px;
  width: 100%;
}
.input-pos #t_inp-p,
.input-pos #t_inp-n,
.input-pos #t_inp{
  color: gray;
  border-radius: 4px;
  height: 100%;
  width: 100%;
  border: 1px solid silver;
  padding-left: 15px;
  outline: none;
  font-size: 15px;
  transition: .1s;
}
#t_inp-p:focus,
#t_inp-n:focus,
#t_inp:focus{
  border: 0.1rem solid var(--b);
  box-shadow: 0 3px 3px var(--inp-shadow);
}
.input-pos .t_log_lab, i.show{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.input-pos .t_log_lab{
  left: 15px;
  pointer-events: none;
  color: grey;
  font-size: 15px;
  transition: .1s;
}
i.show{
  padding: 4px;
  right: 10px;
  color: gray;
  font-size: 17px;
  user-select: none;
  visibility: hidden;
}
#t_inp-p:valid ~ i.show,
#t_inp-n:valid ~ i.show,
#t_inp:valid ~ i.show{
    color: gray;
    visibility: visible;
}
#t_inp-p:focus ~ .t_log_lab,
#t_inp-p:valid ~ .t_log_lab,

#t_inp-n:focus ~ .t_log_lab,
#t_inp-n:valid ~ .t_log_lab,

#t_inp:focus ~ .t_log_lab,
#t_inp:valid ~ .t_log_lab{
  transform: translateY(-32px);
  border-radius: 5px;
  background: white;
  font-size: 16px;
  color: var(--b);
  padding: 0px 3px;
}

#t_inp-p:focus,
#t_inp-p:valid,
#t_inp-n:focus,
#t_inp-n:valid,
#t_inp:focus,
#t_inp:valid{
      border: 0.1rem solid var(--b);

}
.submit{
    padding: 8px;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 4px;
    color: #fff;
    background: var(--button-b);
}
.input-reg-a{
    background: var(--tag);
    padding: 8px 5px;
    margin: 5px;
    border-radius: 6px;
}
.input-reg-a a{
    color: var(--b);
}
/*reg*/
.select{
    padding: 8px 12px;
    border: 1px solid silver;
    border-radius: 4px;
    outline: none;
    background: #fff;
}

.forms{
    background: #fff;
    border-radius: 4px;
    padding: 6px;
    border-bottom: 0.1rem solid #eee;
}
.forms .textarea{
    background: var(--form);
    padding: 6px;
    margin-bottom: 5px;
    border-radius: 6px;
}
.msg{
    border-radius: 4px;
    outline: none;
    border: none;
    width: 99.5%;
    height: 45px;
    padding: 5px;
    box-shadow: inset -2px -2px 5px #ddd;

}
.input{
    padding: 10px;
    border-radius: 4px;
    border: 1px solid var(--b);
    margin: 5px 2px;
    outline: none;
}

.sts-form{
    background-color: white;
    padding: 10px;
    margin: 1px 0;
}
.sts{
    width: 85%;
    padding: 10px 8px;
    border-radius: 20px;
    border: none;
    outline: none;
    background-color: #f5f5f5;
    box-shadow: inset -2px -2px 5px #ddd;
}
.sts-btn{
    background-color: var(--b);
    color: white;
    padding: 10px 15px;
    border-radius: 50%;
    border: none;
    outline: none;
    cursor: pointer;
}
.no-submit,
.not-submit{
    background: white;
    padding: 8px;
    color: var(--b);
    text-align: center;
    border: 1px solid #eee;
    border-radius: 5px;
}

#input-con .blur-circle {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.6;
    pointer-events: none;
}

#input-con .circle1 {
    background: #7a3ded;
    top: 10%;
    left: 10%;
    pointer-events: none;
}

#input-con .circle2 {
    background: #caa6ff;
    top: 60%;
    left: 70%;
    pointer-events: none;
}

#input-con .circle3 {
    background: #fca5ff;
    top: 30%;
    left: 60%;
    pointer-events: none;
}

#input-con .circle4 {
    background: #ff6b6b;
    top: 70%;
    left: 20%;
    pointer-events: none;
}