

@import url('https://fonts.googleapis.com/css2?family=Aref+Ruqaa:wght@400;700&family=Lateef:wght@200;300;400;500;600;700;800&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family:  "Lateef", serif;
	accent-color: #56AFAE;
	letter-spacing: 1px;

}
p {

	color: rgb(78, 77, 77);
	font-size: 30px;
}

:root {
	--yellow: #FFBD13;
	--theme: #11B4B1;
	--blue: #4383FF;
	--blue-d-1: #3278FF;
	--light: #F5F5F5;
	--grey: rgb(228, 228, 228);
	--white: #FFF;
	--shadow: 8px 8px 30px rgba(0, 0, 0, 0.126);
}

body {
	background: var(--grey);
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	padding: 1rem;
	
}



/* From Uiverse.io by LightAndy1 */ 
.loader {
	user-select: none;
  }
  
  .star {
	opacity: 0;
	fill: #ff7f7f;
	animation: loader 2s infinite alternate;
  }
  
  .star2 {
	height: 20px;
	margin-left: -10px;
	animation-delay: 0.25s;
  }
  
  .star3 {
	height: 16px;
	margin-left: -15px;
	animation-delay: 0.5s;
  }
  
  @keyframes loader {
	0% {
	  opacity: 0;
	  transform: translateY(0) translateX(50px) rotate (0deg);
	}
	10% {
	  opacity: 0;
	  transform: translateY(0) translateX(50px) rotate(0deg);
	}
	100% {
	  opacity: 1;
	  transform: translateY(-20px) translateX(0) rotate(360deg);
	}
  }
  














.main-container{
 

	width: 100%;
	
	
}

















.wrapper {
	/* background: var(--grey); */
	background-color: transparent;
	/* max-width: 576px; */
	width: auto;
	border-radius: .75rem;
	box-shadow: var(--shadow);
	text-align: center;
	/* background-color: white; */
	padding: 50px 100px;
	
}
.wrapper h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
}
/* .rating {
	display: flex;
	justify-content: center;
	align-items: center;
	grid-gap: .5rem;
	font-size: 2rem;
	color: var(--theme);
	margin-bottom: 2rem;
}
.rating .star {
	cursor: pointer;
}
.rating .star.active {
	opacity: 0;
	animation: animate .5s calc(var(--i) * .1s) ease-in-out forwards;
}

@keyframes animate {
	0% {
		opacity: 0;
		transform: scale(1);
	}
	50% {
		opacity: 1;
		transform: scale(1.2);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}


.rating .star:hover {
	transform: scale(1.1);
} */
textarea {
	width: 100%;
	background: var(--light);
	padding: 1rem;
	border-radius: .5rem;
	border: none;
	outline: none;
	resize: none;
	margin-bottom: .5rem;
	font-size: 20px;
}
input[type="text"] {
    width: 100%;
    background: var(--light);
    padding: 1rem;
    border-radius: 0.5rem;
    border: none;
    outline: none;
    margin-bottom: 0.5rem;
    font-size: 1.25rem; 
}
.btn-group {
	display: flex;
	grid-gap: .5rem;
	align-items: center;
}
.btn-group .btn {
	padding: .75rem 1rem;
	border-radius: .5rem;
	border: none;
	outline: none;
	cursor: pointer;
	font-size: .875rem;
	font-weight: 500;
}
.btn-group .btn.submit {
	background: var(--theme);
	color: var(--white);
	font-size: 24px;
	font-weight: 700;
}
.btn-group .btn.submit:hover {
	background: var(--blue-d-1);
}
.btn-group .btn.cancel {
	background: var(--white);
	color: var(--blue);
}
.btn-group .btn.cancel:hover {
	background: var(--light);
}





/* submit button */
/* From Uiverse.io by cssbuttons-io */ 
.fancy {
	background-color: transparent;
	border: 2px solid #000;
	border-radius: 0;
	box-sizing: border-box;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	float: right;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin: 0;
	outline: none;
	overflow: visible;
	padding: 0.75em 1.25em;
	position: relative;
	text-align: center;
	text-decoration: none;
	text-transform: none;
	transition: all 0.3s ease-in-out;
	user-select: none;
	font-size: 13px;
	margin-top: 50px;
	
   }
   
   .fancy::before {
	content: " ";
	width: 1.5625rem;
	height: 2px;
	background: rgb(71, 71, 71);
	top: 50%;
	left: 1.5em;
	position: absolute;
	transform: translateY(-50%);
	transform-origin: center;
	transition: background 0.3s linear, width 0.3s linear;
   }
   
   .fancy .text {
	font-size: 1.125em;
	line-height: 1.33333em;
	padding-left: 2em;
	display: block;
	text-align: left;
	transition: all 0.3s ease-in-out;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--theme);
	font-size: 22px;
   }
   
   .fancy .top-key {
	height: 2px;
	width: 1.5625rem;
	top: -2px;
	left: 0.625rem;
	position: absolute;
	background: #e8e8e8;
	transition: width 0.5s ease-out, left 0.3s ease-out;
   }
   
   .fancy .bottom-key-1 {
	height: 2px;
	width: 1.5625rem;
	right: 1.875rem;
	bottom: -2px;
	position: absolute;
	background: #e8e8e8;
	transition: width 0.5s ease-out, right 0.3s ease-out;
   }
   
   .fancy .bottom-key-2 {
	height: 2px;
	width: 0.625rem;
	right: 0.625rem;
	bottom: -2px;
	position: absolute;
	background: #e8e8e8;
	transition: width 0.5s ease-out, right 0.3s ease-out;
   }
   
   .fancy:hover {
	color: rgb(39, 38, 38);
	background: var(--theme);
	
   }
   
   .fancy:hover::before {
	width: 0.9375rem;
	background: white;
   }
   
   .fancy:hover .text {
	color: white;
	padding-left: 1.5em;
   }
   
   .fancy:hover .top-key {
	left: -2px;
	width: 0px;
   }
   
   .fancy:hover .bottom-key-1,
	.fancy:hover .bottom-key-2 {
	right: 0;
	width: 0;
   }


   



/* From Uiverse.io by 00Kubi */ 
.radio-inputs {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	border-radius: 0.5rem;
	background-color: #eeeeee18;
	box-sizing: border-box;
	box-shadow: 0 0 0px 1px rgba(0, 0, 0, 0.06);
	padding: 0.25rem;
	width: 300px;
	font-size: 14px;
	margin-top: 20px;
	margin-bottom: 20px;
  }
  
  .radio-inputs .radio {
	flex: 1 1 auto;
	text-align: center;
	
  }
  
  .radio-inputs .radio input {
	display: none;
  }
  
  .radio-inputs .radio .name {
	display: flex;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	border-radius: 0.5rem;
	border: none;
	padding: 0.5rem 0;
	color: rgba(51, 65, 85, 1);
	font-size: 20px;
	transition: all 0.15s ease-in-out;
  }
  
  .radio-inputs .radio input:checked + .name {
	background-color: #fff;
	font-weight: 600;
  }
  
  /* Hover effect */
  .radio-inputs .radio:hover .name {
	background-color: rgba(255, 255, 255, 0.5);
  }
  
  /* Animation */
  .radio-inputs .radio input:checked + .name {
	position: relative;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	animation: select 0.3s ease;
  }
  
  @keyframes select {
	0% {
	  transform: scale(0.95);
	}
	50% {
	  transform: scale(1.05);
	}
	100% {
	  transform: scale(1);
	}
  }
  
  /* Particles */
  .radio-inputs .radio input:checked + .name::before,
  .radio-inputs .radio input:checked + .name::after {
	content: "";
	position: absolute;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #56AFAE;
	opacity: 0;
	animation: particles 0.5s ease forwards;
  }
  
  .radio-inputs .radio input:checked + .name::before {
	top: -8px;
	left: 50%;
	transform: translateX(-50%);
  }
  
  .radio-inputs .radio input:checked + .name::after {
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
  }
  
  @keyframes particles {
	0% {
	  opacity: 0;
	  transform: translateX(-50%) translateY(0);
	}
	50% {
	  opacity: 1;
	}
	100% {
	  opacity: 0;
	  transform: translateX(-50%) translateY(var(--direction));
	}
  }
  
  .radio-inputs .radio input:checked + .name::before {
	--direction: -10px;
  }
  
  .radio-inputs .radio input:checked + .name::after {
	--direction: 10px;
  }
  
.rating{
	display: flex;
	justify-content: center;
	gap: 10px;
}

  /* From Uiverse.io by BiliBC034 */ 
.rating:not(:checked) > input {
	position: absolute;
	appearance: none;
  }
  
  .rating:not(:checked) > label {
	float: right;
	cursor: pointer;
	font-size: 30px;
	color: #666;
  }
  
  .rating:not(:checked) > label:before {
	content: "★";
	font-size: 30px;
  }
  
  .rating > input:checked + label:hover,
  .rating > input:checked + label:hover ~ label,
  .rating > input:checked ~ label:hover,
  .rating > input:checked ~ label:hover ~ label,
  .rating > label:hover ~ input:checked ~ label {
	color: #56AFAE;
  }
  
  .rating:not(:checked) > label:hover,
  .rating:not(:checked) > label:hover ~ label {
	color: #56AFAE;
  }
  
  .rating > input:checked ~ label {
	color: #56AFAE;
  }


  /* success page */

  /* From Uiverse.io by rzouga001 */ 
.card {
	overflow: hidden;
	position: relative;
	text-align: left;
	border-radius: 0.5rem;
	max-width: 590px;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	background-color: #fff;
  }
  
  .div_image_v {
	background: var(--theme);
	border-bottom: none;
	position: relative;
	text-align: center;
	margin: -20px -20px 0;
	border-radius: 5px 5px 0 0;
	padding: 35px;
  }
  
  .dismiss {
	position: absolute;
	right: 10px;
	top: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem 1rem;
	background-color: #fff;
	color: black;
	border: 2px solid #D1D5DB;
	font-size: 1rem;
	font-weight: 300;
	width: 30px;
	height: 30px;
	border-radius: 7px;
	transition: .3s ease;
  }
  
  .dismiss:hover {
	background-color: #ee0d0d;
	border: 2px solid #ee0d0d;
	color: #fff;
  }
  
  .header {
	padding: 1.25rem 1rem 1rem 1rem;
  }
  
  .image {
	display: flex;
	margin-left: auto;
	margin-right: auto;
	background-color: #e2feee;
	flex-shrink: 0;
	justify-content: center;
	align-items: center;
	width: 3rem;
	height: 3rem;
	border-radius: 9999px;
	animation: animate .6s linear alternate-reverse infinite;
	transition: .6s ease;
  }
  
  .image svg {
	color: var(--theme);
	width: 2rem;
	height: 2rem;
  }
  
  .content {
	margin-top: 0.75rem;
	text-align: center;
  }
  
  .title {
	color: var(--theme);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.5rem;
	font-size: 30px;
  }
  
  .message {
	margin-top: 0.5rem;
	color: #595b5f;
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-size: 24px;
  }
  
  @keyframes animate {
	from {
	  transform: scale(1);
	}
  
	to {
	  transform: scale(1.09);
	}
  }
  