@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
}
body {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background: #fff;
	color: #333;
}
.container {
	margin: 0 15px;
}
.form-box {
	width: 100%;
	max-width: 450px;
	padding: 30px;
	background: #d0cdcd;
	margin-bottom:35px;
	border-radius: 0;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
input.cs_name,
input.cs_email,
input.cs_password {
	width: 100%;
	padding: 12px;
	background: #f8f8f8;
	border-radius: 6px;
	border: none;
	outline: none;
	font-size: 16px;
	color: #333;
	margin-bottom: 20px;
}
::placeholder {
	color: #000;
}
.cs_register {
	width: 100%;
	padding: 12px;
	background: #4a6da7;
	border-radius: 6px;
	border: none;
	cursor: pointer;
	font-size: 16px;
	color: #fff;
	font-weight: 500;
	margin-bottom: 20px;
	transition: 0.5s;
}
.cs_register:hover {
	background: #3570d2;
}
.cs_register_txt {
    color: #000 !important;
	font-size: 14.5px;
	text-align: center;
	margin-bottom: 10px;
}
h3 {
	font-size: 30px;
	text-align: center;
	margin-bottom: 20px;
}
.footer-wrap {
	width: 100% !important;
	position: fixed !important;
	bottom: 0 !important;
	background-color: #4a6da7;
}
.copyright {
	font-size: 15px;
	margin: 10px auto;
	text-align: center;
	color: #fff;
}
.error_cs {
    color: #fff;
    padding: 15px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    background-color: #e74949;
}
.success_cs {
		color: #ffffff;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    background-color: #33d275;
}

input:focus::placeholder {
  color: transparent;
}
.text-capitalize {
	text-transform: capitalize;
}
img.cs_logo {
	width: 30px;
}

/*.logo_holder {
	width: 100%;
	text-align: center;
}*/

.cs_lbl {
	margin-bottom: 15px !important;
	line-height: 30px !important;
}

