@charset "utf-8";
/* CSS Document */

/*----------------------------------------------------------------------------------------------*/
.login-side{
	width: 100%;
	height: 600px;
	position: relative;
}
.img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 450px;
	height: 450px;
}
.login{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 500px;
	background: rgba(0,0,0,0.55);
	border-radius: 10px;
	box-shadow: 10px 10px 15px rgba(0,0,0,0.05);
	z-index: 2;
}
.login h1{
	text-align: center;
	padding: 20px 0;
	border-bottom: 1px solid silver;
	color: white;
}
.login form{
	padding: 0 40px;
	box-sizing: border-box;
}
form .txt_field{
	position: relative;
	border-bottom: 2px solid #adadad;
	margin: 30px 0;
}
.txt_field input{
  width: 100%;
  padding: 0 5px;
  height: 40px;
  font-size: 16px;
  border: none;
  background: none;
  outline: none;
	text-align: right;
}
.txt_field label{
  position: absolute;
  top: 50%;
  right: 5px;
  color: #fff;
  transform: translateY(-50%);
  font-size: 16px;
  pointer-events: none;
  transition: .5s;
}
.txt_field span::before{
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #2691d9;
  transition: .5s;
}
.txt_field input:focus ~ label,
.txt_field input:valid ~ label{
  top: -5px;
  color: #2691d9;
}
.txt_field input:focus ~ span::before,
.txt_field input:valid ~ span::before{
  width: 100%;
}
.pass{
  margin: -5px 0 20px 5px;
  color: #fff;
  cursor: pointer;
}
.pass:hover{
  text-decoration: underline;
}
input[type="submit"]{
  width: 100%;
  height: 50px;
  border: 1px solid;
  background: #2691d9;
  border-radius: 25px;
  font-size: 18px;
  color: #e9f4fb;
  font-weight: 700;
  cursor: pointer;
  outline: none;
	font-family: 'Cairo', sans-serif;
}
input[type="submit"]:hover{
  border-color: #2691d9;
  transition: .5s;
}
.signup_link{
  margin: 30px 0;
  text-align: center;
  font-size: 16px;
  color: #fff;
}
.signup_link a{
  color: #0093FF;
  text-decoration: none;
}
.signup_link a:hover{
  text-decoration: underline;
}
@media (max-width:650px){
	.img{
		width: 400px;
		height: 400px;
	}
	.login{
		width: 450px;
		min-height: 500px;
	}
}
@media (max-width:500px){
	.img{
		width: 350px;
		height: 350px;
	}
	.login{
		width: 400px;
		min-height: 450px;
	}
}
@media (max-width:440px){
	.img{
		width: 300px;
		height: 300px;
	}
	.login{
		width: 350px;
		min-height: 400px;
	}
}
@media (max-width:390px){
	.img{
		width: 280px;
		height: 280px;
	}
	.login{
		width: 300px;
		min-height: 400px;
	}
}
.textcontact{
    width:75%;
    direction:rtl;
    margin:100px auto;
}
.textcontact pre{
    color:#fff;
    font-size:20px;
}
.textcontact pre a{
        text-decoration: none;
        color:white;
}