
  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');
  @import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

*{
   padding: 0;
   margin: 0;
   box-sizing: border-box;
   font-family: 'Poppins', sans-serif;
}

:root{
 --primaryColor: #ad91cf;
 --secondaryColor: rgb(196, 169, 230);
 --blackColor: rgb(46, 46, 71);
 --borderColor: rgb(46, 46, 71);
 --inputColor: rgb(241, 241, 241);
 --successColor: rgb(205, 237, 207);
 --failureColor: rgb(255, 0, 0);
}

html{
  font-size: 80%;
}

body{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
 background-color: #E96479;

/*  background-image: url('bgpink.png');*/
}

.form_container{
  width: 290px;
  height: 400px;
  padding: 0 1rem;
  border-radius: 3px;
  border: 1px solid;
  color:#000000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: auto;
  position: relative;
  background:#ffb3b3;
  overflow: hidden;
  z-index: 1;

/*  background-image: url('bgpink.png');*/
}

.overlay{
  position: absolute;
  background:#ffcccc;
  content: ;
  height: 400px;
  width: 500px;
  border-radius: 50%;
  z-index: 2;
  top: -20%;
/*  display: none;*/
}

.titleDiv{
  position: relative;
  width: 100%;
  margin: 10px auto 5px;
  text-align: center;
  transform: translateY(-3rem);
  z-index: 1000;
}

.title{
  color: var(--blackColor);
  font-weight: 700;
  font-size: 2.5rem;
}

.rows{
  display: grid;
  position: relative;
  gap: 1rem;
  z-index: 1000;
  transform: translateY(-1rem);
  padding-bottom: 1rem;
  padding-left: 15px; 
}

.label{
  display: block;
  padding-bottom: .285rem;
  font-size: 13px;
}

.input{
  
  background: var(--inputColor);
  border: none;
  outline: none;
  color: var(--blackColor);
  font-weight: 20;
  padding: .5rem;
  border-radius: 3px;

}

::placeholder{
  font-size: 10px;
}

#username{
  width: 90%;

}

#usermbti{
  width: 90%;
}

#email{
  width: 90%;
}

#password{
  width: 90%;
}

#jur{
  width: 90%;
}

#submitBtn{
  width: 90%;
  background: var(--blackColor);
  border-radius: 3px;
  cursor: pointer;
  color: white;
 
&:hover
    background: #ccccff;

}

.registerLink{
  display: block;
  font-size: 13px;
  color: var(--blackColor);
  text-align: center;
  font-weight: 400;
  margin-top: 1rem;
}

.a{
  text-decoration: none;
  cursor: pointer;
}

.register_container{
  width: 290px;
  height: 500px;
  padding: 0 1rem;
  border-radius: 3px;
  border: 1px solid;
  color:#000000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: auto;
  position: relative;
  background: #ffb3b3;
  overflow: hidden;
  z-index: 1;
}












