/* Import Google font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body{
  width: 100%;
}
.container{
  position: absolute;
  top:0%;
  left: 50%;
  transform: translate(-50%,5%);
  max-width: 330px;
  width: 100%;
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
.container .registration{
  display: none;
}
#check:checked ~ .registration{
  display: block;
}
#check:checked ~ .login{
  display: none;
}
#check{
  display: none;
}
.container .form{
  padding: 2rem;
}
.form header{
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 1rem;
}

.form textarea {
  width: 100%;
  height: 150px;
  padding: 12px 20px;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #f8f8f8;
  resize: none;
}
 .form select{
	margin: auto;
	width: 90%;
	padding: 5px;
	border-radius: 10px;
	background-color: #F1F1F1;
}
 
 .form input{
   height: 50px;
   width: 100%;
   padding: 0 15px;
   font-size: 14px;
   margin-bottom: 1rem;
   border: 1px solid #ddd;
   border-radius: 15px;
   outline: none;
 }

 .form input:focus{
   box-shadow: 0 1px 0 rgba(0,0,0,0.2);
 }
.form a{
  font-size: 16px;
  color: #009579;
  text-decoration: none;
}
.form a:hover{
  text-decoration: underline;
}
input[type=submit] {
margin:auto;
width:90%;
	background-color: #FF9966;
	color: white;
	padding:10px;
	border: none;
	border-radius:10px;
	cursor: pointer;
}

input[type=submit]:hover {
  background-color: #45a049;
}

.signup{
  font-size: 14px;
  text-align: center;
}
.signup label{
  color: #009579;
  cursor: pointer;
}
.signup label:hover{
  text-decoration: underline;
}





button {
	background-color: #FF9966;
	color: white;
	padding:5px;
	margin: 8px 0;
	border: none;
		border-radius:10px;

	cursor: pointer;
	width: 100%;
}

button:hover {
  opacity: 0.8;
}


.chip {
  display: inline-block;
  padding: 0 25px;
  height: 50px;
  font-size: 18px;
  line-height: 50px;
  border-radius: 25px;
  background-color: #f1f1f1;
}

.chip img {
  float: left;
  margin: 0 10px 0 -25px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
}

.closebtn {
  padding-left: 10px;
  color: #888;
  font-weight: bold;
  float: right;
  font-size: 20px;
  cursor: pointer;
}

.closebtn:hover {
  color: #000;
}



* {
  box-sizing: border-box;
}


/* Float four columns side by side */
.column {
  float: Right;
  width: 50%;
  padding: 0 10px 10px 0;
}

/* Remove extra left and right margins, due to padding */
.row {margin: 0 -5px;}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive columns */
@media screen and (max-width: 750px) {
  .column {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }
}

/* Style the counter cards */
.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 10px;
  text-align: center;
  background-color: #f1f1f1;
}
