* {
	box-sizing: border-box;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type="number"] {
	-moz-appearance: textfield;
}

body {
	background: linear-gradient(to bottom, #ffcc00, #ffd885);
	background-repeat: no-repeat;
	min-height: 1200px;
	font-family: "Hind Siliguri", "Poppins", sans-serif;
	display: flex;
	flex-direction: column;
}

.logo {
	width: 200px;
	margin-left: 35%;
	margin-top: 5%;
}

label {
	display: block;
	margin-bottom: 5px;
}

input {
	border: none;
	outline: none;
	width: 100%;
	padding: 0.5em;
	margin-bottom: 0.5em;
	background-color: #eeeff1;
	border-radius: 5px;
	color: #808083;
}

.glass-body {
	margin-top: 5em;
	padding: 5em;
	background: rgba(255, 255, 255, 0.54);
	border-radius: 16px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);

	-webkit-backdrop-filter: blur(1.7px);
	border: 1px solid rgba(255, 255, 255, 0.14);
	width: 70%;
}

.main-form {
	background-color: white;
	padding: 2em;
	border-radius: 5px;
}

.toggle-button-box {
	display: flex;
	background-color: black;
	padding: 0.5em;
	border-radius: 5px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -10%;
	z-index: 10;
}

.toggle-button {
	border: none;
	padding: 0.5em;
	border-radius: 5px;
	color: white;
	cursor: pointer;
	background-color: transparent;
}

.active {
	background-color: #ff571f;
}

.submit-button {
	border: none;
	background-color: #ff571f;
	color: white;
	padding: 0.2em 1em 0.2em 1em;
	border-radius: 5px;
	position: absolute;
	right: 0;
	bottom: 10px;
	margin-right: 1.5em;
}

.response-box {
	background: white;
	padding: 1em 2em 1em 2em;
	border-radius: 5px;
}

.response-box h4 {
	color: #238800;
}

.response-box p {
	color: #ff571f;
}

.response-form {
	background-color: #e4e5e6;
}

.response-form input {
	background-color: #fff;
}

.bg {
	position: absolute;
	top: 20%;
	right: 0;
	width: 40%;
}

.links-box {
	margin-top: 1rem;
	margin-left: 1rem;
	background: white;
	width: 50%;
	border-radius: 5px;
	padding: 0.5em;
}

.links-box a {
	text-decoration: none;
	color: #ff571f;
}

@media (max-width: 1200px) {
	.glass-body {
		padding: 3em 1em 2em 1em;
		margin-top: 4rem;
		width: 100%;
	}

	.links-wrapper {
		justify-content: center;
	}

	.links-box {
		width: 95%;
		margin-left: unset;
	}

	.main-form {
		min-height: 550px;
	}

	.logo {
		width: 150px;
		margin-left: 30%;
	}

	.bg {
		width: 100%;
		z-index: -1;
		opacity: 0.6;
	}

	.toggle-button-box {
		justify-content: center;
		width: 80%;
		top: -15%;
	}
}

@media (max-width: 800px) {
	.bg {
		top: 40%;
	}
}

@media (max-width: 560px) {
	.bg {
		top: 60%;
	}
}
