body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background-color: #E9EBEE;
}

.container {
	max-width: 800px;
	margin: auto;
	padding: 20px;
	background-color: #FFFFFF;
	color: #484848;
	text-align: center;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
	border-radius: 10px;
	animation: fadeIn 1s ease-in-out;
}

.table, .table th, .table td 
{
	width: 100%;
	border: 1px solid;
	border-collapse: collapse;
	vertical-align: top;
	word-wrap:normal;
	table-layout: fixed;
}

.table th
{
	width: 20%;
}

.table td
{
	word-wrap: break-word;
}

table {
	width: 100%;
	border: 1px solid;
	border-collapse: collapse;
	vertical-align: top;
	word-wrap:normal;
	table-layout: fixed;
}

th,
td {
  text-align: center;
  padding: 8px;
  word-wrap: normal;
  word-wrap: break-word;
  border: 1px solid #ddd;
}

tr:nth-child(even) {
  background-color: #f2f2f2;
  word-wrap: normal;
}


@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

h1 {
	font-size: 3rem;
	margin-bottom: 30px;
	color: #484848;
	animation: slideInLeft 1s ease-in-out;
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-100px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

form {
	margin-bottom: 30px;
	animation: slideInUp 1s ease-in-out;
}

@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(100px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

label {
	display: block;
	font-size: 1.2rem;
	margin-bottom: 10px;
	color: #484848;
	animation: fadeIn 1s ease-in-out;
}

textarea {
	display: block;
	width: 98%;
	padding: 10px;
	margin-bottom: 20px;
	border-radius: 5px;
	border: none;
	background-color: #F2F3F4;
	color: #484848;
	resize: none;
	height: 200px;
	animation: fadeIn 1s ease-in-out;
}

input[type="submit"] {
	background-color: #008CBA;
	color: #fff;
	padding: 10px 20px;
	border-radius: 5px;
	border: none;
	cursor: pointer;
	font-size: 1.2rem;
	animation: slideInRight 1s ease-in-out;
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(100px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

input[type="submit"]:hover {
	background-color: #006B87;
}

p {
	font-size: 1.2rem;
	line-height: 1.5;
	margin-bottom: 20px;
	color: #484848;
	text-align: justify;
	animation: fadeIn 1s ease-in-out;
}

ul {
	text-align: left;
	margin-bottom: 30px;
	animation: slideInLeft 1s ease-in-out;
}

li {
	font-size: 1.2rem;
	line-height: 1.5;
	margin-bottom: 10px;
	list-style-type: none;
	color: #484848;
}

li:before {
	content: "\2022";
	color: #008CBA;
	font-weight: bold;
	display: inline-block;
	width: 1em;
	margin-left: -1em;
}

.download-button {
	position: relative;
	border-width: 0;
	color: white;
	font-size: 15px;
	font-weight: 600;
	border-radius: 4px;
	z-index: 1;
   }
   
   .download-button .docs {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-height: 40px;
	padding: 0 10px;
	border-radius: 4px;
	z-index: 1;
	background-color: #242a35;
	border: solid 1px #e8e8e82d;
	transition: all .5s cubic-bezier(0.77, 0, 0.175, 1);
   }
   
   .download-button:hover {
	box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
   }
   
   .download {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 90%;
	margin: 0 auto;
	z-index: -1;
	border-radius: 4px;
	transform: translateY(0%);
	background-color: #01e056;
	border: solid 1px #01e0572d;
	transition: all .5s cubic-bezier(0.77, 0, 0.175, 1);
   }
   
   .download-button:hover .download {
	transform: translateY(100%)
   }
   
   .download svg polyline,.download svg line {
	animation: docs 1s infinite;
   }
   
   
   @keyframes docs {
    0% {
     transform: translateY(0%);
    }
   
    50% {
     transform: translateY(-15%);
    }
   
    100% {
     transform: translateY(0%);
    }
   }

.button {
	padding: 15px 25px;
	border: unset;
	border-radius: 15px;
	color: #212121;
	z-index: 1;
	background: #e8e8e8;
	position: relative;
	font-weight: 1000;
	font-size: 17px;
	-webkit-box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
	box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
	transition: all 250ms;
	overflow: hidden;
   }
   
   .button::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	border-radius: 15px;
	background-color: #212121;
	z-index: -1;
	-webkit-box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
	box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
	transition: all 250ms
   }
   
   .button:hover {
	color: #e8e8e8;
   }
   
   .button:hover::before {
	width: 100%;
   }

   input[type=email] {
    padding: 10px;
    border: none;
    background-color: #f1f1f1;
    border-radius: 3px;
    width: 300px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    }

   input[type=email]:focus {
    outline: none;
    box-shadow: 0 0 5px #007bff;
    }
