body{
	margin:0;
	padding:0;
	font-family: 'Open Sans', sans-serif;
	color: #fff;
	background: #000; 
	
}

.bg{
	position: absolute;
	z-index: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	opacity: 0.5;
}

.bg img{
	width: 100vw;
	height: 100vh;
	object-fit: cover;
	object-position: center;
}

.wrapper{
	width: 100%;
	height: 100%;
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
}
.content {
	
	width: 600px;
	padding: 69px 104px;
	max-width: 90%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: column;
	text-align: center;
}
.logo {
    width: 400px;
    height: auto;
    max-width: 80%;
}
p {
    font-style: normal;
    font-size: 18px;
    line-height: 33px;
    letter-spacing: 0;
}
p a {
	text-decoration: none;
	border: 1px solid #fff;
	padding: 10px 15px;
	color: white;
	transition: all 0.5s;
	min-width: 200px;
	display: table;
	background: #0005;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 4.5px;
}

  p a:hover {
	text-decoration: none;
	border: 1px solid #fff;
	padding: 10px 15px;
	color: #333;
	background: #fff;
  }

  #sb-container .sb-custom-button-bg-color {
	font-size: 20px;
	line-height: 28px;
	height: 49px;
	margin: 23px 0 0;
}
h2 {
	font-size: 26px;
	font-weight: normal;
	letter-spacing: 4px;
	text-transform: uppercase;
	line-height: 20px;
	margin: 74px 0 16px;
	direction: rtl;
}
form {
	width: 100%;
	margin-top: 28px;
}
input {
	text-align: center;
	color: #fff;
	background:none;
	border: 1px solid #fff;
	line-height: 49px;
	width: 35%;
	margin: 0 1%;
	padding: 0;
}
button {
	background: #fff;
	color: #000;
	border: none;
	line-height: 50px;
	padding: 0 18px;
	cursor: pointer;
}
button:hover {
	background: #000;
	color: #fff;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
	color: #fff;
	opacity: 1; /* Firefox */
  }
  
  :-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: #fff;
  }
  
  ::-ms-input-placeholder { /* Microsoft Edge */
	color: #fff;
  }


  .bottom {
	display: flex;
	width: 600px;
	margin-top: 19px;
	justify-content: space-between;
	border-top: 1px solid #fff;
	padding-top: 17px;
}


.bottom a{
	color: #fff;
	text-decoration: none;
}


/* Smartphones (portrait) ----------- */
@media only screen
and (orientation : portrait),
only screen
and (max-width : 760px)
and (orientation : landscape)
{

	.content {
		padding: 5%;
	}
	.logo {
		width: 54%;
		height: auto;
	}
	h2 {
		margin-top: 50px;
		font-size: 17px;
	}
	p {
		font-size: 14px;
		letter-spacing: 1.5px;
	}
	.bottom {
		width: 100%;
		flex-flow: column;
	}
	.bottom span {
		margin: 7px 0;
	}

}