@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");

::-webkit-scrollbar {
	width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
	background: #37383F;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: white;
	border: 1px solid white;
	border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: whitesmoke;
}

* {
	transition: 0.5s ease all;
}
  


html {
	width: 100%;
	height: 100%;
}

* {
	background-color: #151515;
	margin: 0;
	font-family: 'Montserrat';
}

body {
	width: auto;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow-y: scroll;
}

.container {
	width: 80vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 50px;
}

form {
	max-width: 600px;
	min-height: 250px;
	width: 90%;
	height: 40%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-width: 3px;
	border-style: solid;
	border-color: transparent;
	border-radius: 15px;
	animation: animate-border 10s linear infinite;
	padding: 50px;
}

@keyframes animate-border {
	0% {
		border-color: #d02064;
	}
	10% {
		border-color: #d02055;
	}
	20% {
		border-color: rgb(233, 55, 70);
	}
	30% {
		border-color: #c4383f;
	}
	40% {
		border-color: #db2534;
	}
	50% {
		border-color: #b050f0
	}
	60% {
		border-color: #e73ee7;
	}
	70% {
		border-color: #ff6996;
	}
	80% {
		border-color: #ff698f;
	}
	90% {
		border-color: #ff4b63;
	}
	100% {
		border-color: #d02064;
	}

}

.custom-select {
	background-color: #212121;
	color: white;
	font-family: "Montserrat";
	padding: 0.5rem;
	border: 1px solid #121212; /* Retaining border for focus effect */
	border-radius: 0.375rem;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	outline: none;
}
.custom-select:focus {
	outline: none;
	border-color: #6366f1;
	box-shadow: 0 0 0 1px #6366f1;
}

form .box {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;
}

.box .idhars {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 45%;
	height: 100%;
}

.box .idhars .drop-zone {
	width: 200px;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-family: 'Montserrat';
	font-weight: 500;
	font-size: 20px;
	cursor: pointer;
	color: white;
	border: 4px dashed #009578;
	border-radius: 10px;
	padding: 10px;
}

.drop-zone--over {
	border-style: solid;
}

.drop-zone__input {
	display: none;
}

.drop-zone__thumb {
	width: 100%;
	height: 100%;
	border-radius: 8px;
	overflow: hidden;
	background-color: transparent;
	background-size: cover;
	position: relative;
    background-position: center;
}
.drop-zone__thumb::after {
	content: attr(data-label);
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 5px 0;
	color: #ffffff;
	background: rgba(0, 0, 0, 0.541);
	font-size: x-small;
	text-align: center;

}

img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.box .middlefinger {
	width: 10%;
	height: 100%;
}

.box .others {
	width: 45%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-around;
	flex-direction: column;
	padding: 10px;
}

.box .others .com {
	font-size: 20px;
	width: 90%;
	height: 30%;
	max-height: 130px;
	font-family: 'Montserrat';
	background-color: #212121;
	font-weight: 600;
	color: white;
	border-radius: 10px;
	text-decoration: none;
	border: transparent;
	padding: 20px;
	text-align: center;
}

.box .others .text {
	font-size: 20px;
	width: 100%;
	height: 40px;
	font-family: 'Montserrat';
	background-color: #212121;
	font-weight: 600;
	color: white;
	border-radius: 10px;
	text-decoration: none;
	border: transparent;
	text-align: center;
	display: none;
}

.box .others .button {
	width: 80%;
	height: 50px;
	font-family: 'Montserrat';
	font-size: 20px;
	font-weight: 700;
	border-radius: 10px;
	background-color: #00bc91;
	cursor: pointer;
	display: none;
	transition: all ease-in-out 0.2s;
	border: transparent;
	animation: animate-color 10s linear infinite;
}

.checkboxdiv {
	visibility: hidden;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;
	gap: 15px;
}

.checkboxdiv input {
	outline: none;
}

.checkBox {
	display: block;
	cursor: pointer;
	width: 15px;
	height: 15px;
	border: 3px solid rgba(255, 255, 255, 0);
	border-radius: 7px;
	position: relative;
	overflow: hidden;
	box-shadow: 0px 0px 0px 2px #fff;
}

.checkBox div {
	width: 50px;
	height: 50px;
	background-color: #fff;
	top: -52px;
	left: -52px;
	position: absolute;
	transform: rotateZ(45deg);
	z-index: 100;
}
  
.checkBox input[type=checkbox]:checked + div {
	left: -10px;
	top: -10px;
}
  
.checkBox input[type=checkbox] {
	position: absolute;
	left: 50px;
	visibility: hidden;
}
  
.transition {
	transition: 300ms ease;
}

@keyframes animate-color {
	0% {
		background-color: #d02064;
	}
	10% {
		background-color: #d02055;
	}
	20% {
		background-color: rgb(233, 55, 70);
	}
	30% {
		background-color: #c4383f;
	}
	40% {
		background-color: #db2534;
	}
	50% {
		background-color: #b050f0
	}
	60% {
		background-color: #e73ee7;
	}
	70% {
		background-color: #ff6996;
	}
	80% {
		background-color: #ff698f;
	}
	90% {
		background-color: #ff4b63;
	}
	100% {
		background-color: #d02064;
	}

}

form .text:focus {
	outline:none;
}

form .com:focus {
	outline:none;

}

video {
	width: 100%;
	height: 100%;
}

@media only screen and (max-width:666px) {
	body {
		width: auto;
		height: auto;
		overflow: scroll;
	}

	.container {
		margin: 10px;
		width: 100vw;
		height: 100vh;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	form {
		width: 85%;
		height: 80%;
		padding: 20px;
	}

	form .box {
		width: 100%;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
	}

	.box .idhars {
		height: 50%;
		width: 100%;
		align-items: center;
		justify-content: center;
	}

	.box .middlefinger {
		width: 0px;
		height: 0px;
	}

	.box .others {
		height: 50%;
		width: 100%;
		align-items: center;
		justify-content: space-around;
	}

	.box .others .com {
		width: 80%;
	}

	.box .others .text {
		width: 80%;
	}

	.box .others .button {
		width: 50%;
	}


  }