* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  :root {
    ---dark1: #121212;
    ---dark2: #2e2e2e;
    ---light1: #6366f1;
    ---light2: #1e1e1e;
    ---colorMain: #6366f1;
    ---cadaan: #fff;
    ---casaan: #fb3f3f;
  }

  
  body {
    height: 100vh;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: wrap column;
  }
  
  div.form {
    width: 400px;
    height: 530px;
    background-color: #170249;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-flow: wrap row;
    border-radius: 3px;
    padding: 10px 10px;
    position: relative;
  }
  span#cancelBtn{
      position: absolute;
  top: 10px;
  right: 15px;
  font-size: 26px;
  font-weight: bold;
  cursor: pointer;
  color: rgb(27, 40, 160);
  }
  
  div.maininputs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 3fr);
    justify-items: flex-start;
    align-content: center;
  }
  
  h3 {
    font-size: 2.0rem;
    color: #fff;
    text-align: center;
  
    margin-left: 10%;
  
  }
  
  input {
    background-color: #170249;
    color: var(---light1);
    font-size: 1.2em;
    width: 100%;
    height: 60px;
    outline: none;
    border: none;
    border-radius: 2px;
    padding-left: 10px;
    padding-right: 10px;
    text-transform: capitalize;
    margin: 10px 0px;
    border: solid 0.5px #6366f1;
    border-radius: 3px;
  }
  
  input.Error {
    border: solid 0.5px var(---casaan);
  }
  
  p {
    color: var(---casaan);
    font-size: 1.0em;
    text-align: center;
    visibility: hidden;
  }
  
  p.active {
    visibility: visible;
  }
  
  button {
    width: 100%;
    background-color: var(---colorMain);
    color: #fff;
    outline: none;
    border: none;
    height: 50px;
    margin: 30px 0px;
    cursor: pointer;
    transition: all 1s ease-in-out;
    border-radius: 5px;
    font-size: 1.5em;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  }
  button:hover{
     background-color: #170249;
    border: solid 1px var(---light1);
  }

  div.pop div.popup{
  visibility: hidden;
  opacity: 0;
  transform: translate(0px,-20px);
  transition: all 0.6s ease-in-out;
}
div.pop.active{
  width: 250px;
  height: 50px;
  background-color: #00000049;
  color: var(--blue);
  font-family: "Nooc2aad";
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: visible;
  position: absolute;
  z-index: 99;
  backdrop-filter: blur(12px);
    border-radius: 5px;
        top: 15px;
    right: 570px;
    overflow: hidden;
    opacity: 1;
  transform: translate(0px,0px);
   transition: all 1s ease-in-out;
}
div.msg{
 display: none;
 opacity: 0;
  transform: translate(0px,-20px);
  transition: all 0.6s ease-in-out;
}
div.pop.active div.msg{
  background-color: #007bff;
  color: #fff;
  width: 100%;
  height: 100%;
  gap: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  opacity: 1;
  transform: translate(0px,0px);
   transition: all 1s ease-in-out;
  
}
div.pop.active div.msg p.prgrph{
  font-size: 14px;
  font-family:"Nooc1aad";
}
div.pop.active div.msg div.icon{
  background-color: #f8f9fa;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
div.pop.active div.msg div.icon i{
  color: var(--blue);
}