@import url();

*{
	margin: 0;
	padding: 0;
	font-family: 'Poppins',sans-serif;
	box-sizing: border-box;
	outline: none;
}

section{
	position: absolute;
	height: 100%;
	width: 100%;
	
	background-size: cover;
	background-position: center;
	filter: blur(2px) brightness(50%);
}
body{
	display: flex;
	min-height: 100vh;
	align-items: center;
	justify-content: center;
	background: url(campus.jpeg) no-repeat;
	background-size: cover;
}

.container{
	width: auto;
	background: #000;
	box-shadow: 0 0 8px rgba(250, 250, 250, 0.6);
	opacity: 0.6;
}

.container form{
	width: 100%;
	text-align: center;
	padding: 25px 20px;
}

form h1{
	padding: 10px 0;
	color: white;
}

form .id{
	position: relative;
}

.id i{
	position: absolute;
	font-size: 20px;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	color: white;
}

form input{
	width: 100%;
	height: 50px;
	margin: 4px 0 ;
	border: 1px solid #5c5c5c;
	border-radius: 3px;
	background: #181717;
	padding: 0 15px;
	padding-right: 45px;
	font-size: 20px;
	color: yellowgreen;
}

form textarea{
	width: 100%;
	margin: 4px 0 ;
	border: 1px solid #5c5c5c;
	border-radius: 3px;
	background: #181717;
	padding: 5px 15px;
	padding-right: 45px;
	font-size: 20px;
	color: yellowgreen;

}

form button{
	width: 100%;
	margin-top: 5px;
	border: none;
	border-radius: 3px;
	background: #00fff0;
	color: #222;
	padding: 10px 0;
	font-size: 20px;
	font-weight: 800;
	cursor: pointer;
} 

form input:focus,
form textarea:focus{
	border: 1px solid #00fff0;
	color: #00fff0;
	transition: all 0.3s ease;
}

form input:focus::placeholder,
form textarea:focus::placeholder{
	padding-left: 4px;
	color: #00fff0;
	transition: all 0.3s ease;
}

form input: focus + i{
	color: #00fff0;
	transition: all 0.3s ease;	
}

.popup{
	width: 400px;
	background: #fff;
	border-radius: 6px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,-50%) scale(0);
	transition: 200ms ease-in-out;
	text-align: center;
	padding: 0 30px 30px;
	color: #333;
	visibility: hidden;
}

.popup.active{
	top: 50%;
	transform: translate(-50%,-50%) scale(1);
	visibility: visible;

}

.popup img{
	width: 100px;
	margin-top: -50px;
	border-radius: 50%;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.popup h2{
	font-size: 38px;
	font-weight: 500;
	margin: 30px 0 10px;
}

.popup button{
	width: 100%;
	margin-top: 50px;
	padding: 10px 0;
	background: #6fd649;
	color: #fff;
	border: 0;
	outline: none;
	font-size: 18px;
	border-radius: 4px;
	cursor: pointer;
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}


span.scale-rating{
margin: 5px 0 15px;
    display: inline-block;
   
    width: 100%;
   
}
span.scale-rating>label {
  position:relative;
    -webkit-appearance: none;
  outline:0 !important;
    border: 1px solid grey;
    height:33px;
    margin: 0 5px 0 0;
  width: calc(10% - 7px);
    float: left;
  cursor:pointer;
}

span.scale-rating label {
  position:relative;
    -webkit-appearance: none;
  outline:0 !important;
    height:33px;
      
    margin: 0 5px 0 0;
  width: calc(10% - 7px);
    float: left;
  cursor:pointer;
}

span.scale-rating input[type=radio] {
 	position:absolute;
    
  	opacity:0;
  	outline:0 !important;
    /*border-right: 1px solid grey;*/
    height:33px;
 
    margin: 0 5px 0 0;
  
  	width: 100%;
    float: left;
  	cursor:pointer;
  	z-index:3;
}
span.scale-rating label:hover{
	background: lightpink;
}
span.scale-rating input[type=radio]:last-child{
border-right:0;
}
span.scale-rating label input[type=radio]:checked ~ label{
    -webkit-appearance: none;
 
    margin: 0;
  	background: blue;
}
span.scale-rating label:before
{
  	content:attr(value);
    top: 7px;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    vertical-align: middle;
  	z-index:2;
  	color: white;
}

.ques{
	color: white;
	float: left;

}