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

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

:root {
	--blue: #0071FF;
	--light-blue: #B6DBF6;
	--dark-blue: #005DD1;
	--grey: #f2f2f2;
}

body {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}


.container {
    text-align: center;
    background: transparent;
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 30px rgb(121, 0, 0);
    background: rgba(0, 0, 0, 0.5);
    width: 90%;
    height: 800px;
    max-width: 800px; 
}
.container h4{
    color: white;
    text-align: left;
}

.container p {
    color: white;
    text-align: left;
    font-size: 12px;
}

.img-area {
	position: relative;
	width: 100%;
	height: 340px;
	background: var(--grey);
	margin-bottom: 30px;
	border-radius: 15px;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.img-area .icon {
	font-size: 100px;
}
.img-area h3 {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 6px;
}
.img-area p {
	color: #999;
}
.img-area p span {
	font-weight: 600;
}
.img-area img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 100;
}
.img-area::before {
	content: attr(data-img);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .5);
	color: #fff;
	font-weight: 500;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	pointer-events: none;
	opacity: 0;
	transition: all .3s ease;
	z-index: 200;
}
.img-area.active:hover::before {
	opacity: 1;
}

.select-image, .upload-image {
    width: 40%;
    height: 50px;
    border-radius: 40px;
    border: none;
    font-size: 1.5em;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    margin-top: 20px;
    margin-bottom: 15px;
    margin-left: 35px;
    text-align: center;
    transform: translateX(-15px);
  }

  .select-image:hover, .upload-image:hover {
    background-color: rgba(0, 0, 0, 0);
    color: white;
  }

#blood {
    height: 100vh;
    width: 101%;
    object-fit: cover;
    position: fixed;
    z-index: -1;
}
#submit-buttons{
    display: flex;
}
