body , html{
	width: 100%;
	height: 100%;
}
body{
	font-family: 'Cairo', sans-serif;
	background: url(../images/back.png) no-repeat;
	background-color: #F5F4F2;
	background-size: cover;
	background-position: left bottom;
}

.brand{
	position: absolute;
	top: 20px;
	right: 20px;
}

.brand img{
	width: 170px;
}

.img-theme{
	background-color: #fff;
	text-align: center;
	padding: 10px;
	position: relative;
	cursor: pointer;
	border: 2px solid transparent;
	transition: 0.3s;
}

.img-theme:hover , .img-theme.active{
	border: 2px solid #005CB9;
}

.img-theme img{
	height: auto;
    width: 100%;
}

.img-theme input{
	opacity: 0;
	position: absolute;
}

.title h1{
	color: #1D1D1B;
	font-size: 30px;
	font-weight: 700;
	text-align: center;
	margin: 10px auto 30px auto;
	display: table;
}

.title h1 img{
	width: 60%;
	display: table;
	margin: 10px auto;
}

.form-name label{
	color: #1D1D1B;
	font-size: 25px;
}

.form-name input{
	border-radius: 30px;
	border-color: #808080;
	background: none !important;
	height: 50px;
	padding: 20px;
}

.form-name button{
	border-radius: 30px;
	height: 50px;
	font-size: 20px;
	font-weight: 700;
	transition: 0.3s;
}

.form-name button img{
	height: 90%;
	width: auto;
	margin-right: 10px;
}

.form-name button.btn-dark{
	background-color: #1D1D1B;
}
.form-name button.btn-success{
	background-color: #3DAE2B;
}

.preview img{
	width: 100%;
	height: auto;
	/* max-height: 450px; */
}

.form-name button:hover{
	background: #FFA400
}

.form-name input:focus{
	border-color: #3dae2b;
	box-shadow: none;
}

@media (max-width: 1120px){
	.title h1{
		font-size: 25px;
	}
}

@media (max-width: 992px){
	.brand{
		position: relative;
    display: table;
    margin: 0 auto 40px;
    right: 0;
    top: 0;
	}
}

@media (max-width: 768px){
	body{
		height: auto;
		background-attachment: fixed;
	}
	.title h1 {
    font-size: 22px;
	}
}

@media (max-width: 500px){
	body{
		    background-position: -30px 0;
	}
	.form-name label {
		display: block;
		text-align: center;
	}
}

@media (max-width: 400px){
	.title h1 , .form-name button{
	    font-size: 18px;
	}
	.form-name label {
    font-size: 20px;
	}
	.form-name button img{
		    height: 70%;
	}
}