@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: 'Tajawal', sans-serif;
}



.containers {
	background: #fff;
	box-shadow: 0 10px 15px rgba(179, 179, 179, 0.7);
	border-radius: 7px;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	padding: 1rem;
	/*width:1200px;*/
	margin:0 auto;
}

.containers h1{
	color: #000;
	font-size: 2.6rem;
	padding: 20px 0;
}

.containers h2{
	color: #FF0000;
	font-size: 46px;
	font-weight: 300;
	padding:20px 0;
}

.containers h2 i{
	font-size: 1.8rem;
	padding-left: .1rem;
}

.contain-form{
	width: 75%;
}



.text p{
	font-size: .8rem;
	padding-top: 0.3rem;
}

.input {
	position: relative;
	width: 100%;
	height: 50px;
	margin-bottom: 20px;
}

.your-input input{
	width: 100%;
	height: 50px;
	padding-top: 1.1rem;
	padding-left: 18px;
	outline: none;
	border: 1px solid #8c8c8c;
	border-radius: 3px;
	transition: .2s;
}

.your-input select{
	width: 100%;
	height: 50px;
	padding-top: 1.1rem;
	padding-left: 9px;
	outline: none;
	border: 1px solid #8c8c8c;
	border-radius: 3px;
	transition: .2s;
	background: #fff;
}

.checkmark{
	width: 15px !important;
	height: 50px;
}

.your-input label {
	position: absolute;
	top: -8px;
	left: 8px;
	font-size: 14px;
	color: #000;
	transition: .2s;
	background: #fff;
	padding: 0 10px;
}

.input input:focus ~ label,
.input input:valid ~ label{
	top: 10%;
	font-size: .8rem;
	color: #000;
}

.input input:focus {
	border-width: 2px;
	border-color: #0A66C3;
}

.forgot-password-link {
	padding: 0;
	text-align: left;
	text-decoration: none;
	font-weight: 300;
	color: #0A66C3;
	transition: .3s;
	border-radius: 12px;
}

.forgot-password-link:hover{
	background: rgba(10, 102, 195, 0.3);
}

button {
	display: block;
	height: 50px;
	border:1px #FF0000 solid;
	outline: none;
	border-radius: 10px;
	color: #FFF;
	font-size: 1rem;
	font-weight: 600;
	margin: 0px 0 0 0;
	text-align: center;
	text-decoration: none;
	padding-top: 0px;
	width: 100%;
	background: #FF0000;
}

button i{
	font-size: 15px;
	padding-right: 20px;
}

.line-divider{
	border-top: 0.09rem #ccc solid;
	height: 10px;
	margin: 20px 0 0 0;
	position: relative;
	text-align: center	;
}

.line-divider span{
	position: absolute;
	left: 47%;
	top: -8px;
	background: #fff;
}

.join-link {
	text-decoration: none;
	font-weight: 300;
	color: #000;
}

.join-now-google{
	display: block;
	height: 50px;
	border:1px #FF0000 solid;
	outline: none;
	border-radius: 10px;
	color: #ff0000;
	font-size: 1rem;
	font-weight: 600;
	margin: 20px 0 0 0;
	text-align: center;
	text-decoration: none;
	padding-top: 15px;
}
.join-now-google i{
	font-size: 15px;
	padding-right: 20px;
}
.join-now-google:hover{
	background: #FF0000;
	color: #fff;
}


.join-now-email{
	display: block;
	height: 50px;
	border:1px #CCC solid;
	outline: none;
	border-radius: 10px;
	color: #999;
	font-size: 1rem;
	font-weight: 600;
	margin: 20px 0 0 0;
	text-align: center;
	text-decoration: none;
	padding-top: 15px;
}
.join-now-email i{
	font-size: 15px;
	padding-right: 20px;
}
.join-now-email:hover{
	background: #CCC;
	color: #fff;
}

.card-text{
	font-size: 12px;
	line-height: 1;
}

.card-body-a{
	text-decoration: none !important;
	color: #000;
}

.red{
	color: #FF0000;
}
.green{
	color: #00843D;
}
