

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #a1a1a1 ; 
  border-radius: 5px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #6b6b6b ; 
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #0f5765 ; 
}
   


* a{
	color: inherit;
	text-decoration: none;
}

* b{
	margin-right: 10px;
	display: inline-block;
}

html{
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: Arial, sans-serif;
	/*background-color: #f4f4f9;*/
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	background-image: url('../images/bg1.png');
    background-size: cover; /* Cover the entire container */
    background-position: bottom; /* Center the image */
    background-repeat: no-repeat;
}

.container {
	background-color: transparent;
	padding: 20px 20px;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
	border-radius: 8px;
	max-width: 450px;
	width: 100%;
	height: 85vh;
	overflow-y: auto;
}

h1 {
	text-align: center;
	font-family: Times New Roman;
	color: #009572;
	font-size: 35px;
	letter-spacing: -0.5px;
	font-weight: 700;
	word-spacing: -2px;
	margin-top:30px;
	margin-bottom: 20px;
}

.h3{
	font-size: 16px;
	margin-top:0;
	margin-bottom: 20px;
}

.question-area{
	display: inline-block;
}

.question {
	margin-bottom: 20px;
}

.question p {
	font-size: 13px;
	margin: 0;
}

.question label {
	display: inline-block;
	font-size: 12px;
	margin: 5px 10px;
	padding: 10px 15px;
	background-color: #f0f0f0;
	border: 1px solid #e7e7e7;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.questuib label:hover{
	background-color: #0E7976;
}

.question input[type="radio"] {
	display: none;
}

.question input[type="radio"]:checked + label {
	background-color: #009572;
	color: #fff;
	border-color: #009572;
}

.question input[type="text"],
.question input[type="email"]{
	padding: 10px;
	border: 1px  solid #e9e9e9;
	border-radius: 6px;
	width: 95%;
}

button {
	display: block;
	width: 100%;
	padding: 10px;
	background-color: #009572;
	border: 1px solid #009572;
	color: #ffffff;
	border-radius: 4px;
	font-size: 14px;
	cursor: pointer;
	transition: background-color 0.3s ease;
	margin-bottom: 30px;
}

button:hover {
	background-color: transparent;
	color: #009572;

}

.loader-bg{	
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(00, 00, 00, 0.2);
	z-index: 98;
}

.loader {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 68px;
	height: 68px;
	border-radius: 50%;
	display: inline-block;
	border-top: 4px solid #e16c27;
	border-right: 4px solid transparent;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
}
.loader::after {
	content: '';  
	box-sizing: border-box;
	position: absolute;
	left: 0;
	top: 0;
	width: 68px;
	height: 68px;
	border-radius: 50%;
	border-left: 4px solid #0f5765;
	border-bottom: 4px solid transparent;
	animation: rotation 0.5s linear infinite reverse;
}
@keyframes rotation {
	0% {
	  transform: rotate(0deg);
	}
	100% {
	  transform: rotate(360deg);
	}
} 

.btn{
	width: 50%;
	display: inline-block;
	text-align: center;
	padding: 10px;
	background-color: #009572;
	color: #fff;
	border: 1px solid #009572;
	border-radius: 6px;
	border-color: #009572;
}


@media only screen and (max-width: 1000px) {
	
.container {	
	padding: 20px 20px;
	max-width: 80vh;
	height: 85vh;
	overflow-y: auto;
}

.btn{
	width: 80%;
	display: inline-block;
}
}