
* {
  box-sizing: border-box;
}

body {
    background-color: black;
    color: white;
    font-family: Helvetica;
	  font-size: 17px;
    }

.container {
  position: relative;
  max-width: 1166.67px;
  margin: 47px auto;
  display: flex;
  flex-direction: row;
}

.left {
	width:60%;
	
}

.right{
	width:40%;
	align-items: center;
	display: flex;
	flex-direction:column;
	text-align:center;
	background:#272c40;
}


.container img {vertical-align: middle;height:700px;width:700px;}

.container .left .content {
  position: absolute;
  bottom: 0;
  background: rgb(0, 0, 0); /* Fallback color */
  background: rgba(0, 0, 0, 0.5); /* Black background with 0.5 opacity */
  color: #f1f1f1;
  width: 60%;
  padding: 20px;
}

.right .button {
	text-decoration: none;
	background-color: rgba(255, 255, 255, 0.7);
	color: black;
	border-radius:7px;
	padding:7px;
	font-family:Helvetica;
	font-size:16px;
	cursor: pointer;
}

.right form {
	margin-top:123px;
    align-items: center;
	display: flex;
	flex-direction:column;
	text-align:center;
	margin-bottom:123px;
	background-color: rgba(255, 255, 255, 0.3);
	border-radius:7px;
	width:73%;
}

.right input {
	background-color: rgba(0, 0, 77, 0.2);
	color: white;
	border-radius:15px;
	padding:3px;
	font-family:Helvetica;
	font-size:16px;
	margin-bottom: 15px;
	border: none;
    box-shadow: none;
    outline: none;
}

.right form:first-child {
	padding-top:24px;
}
	
.right h4 {
	margin-top:73px;
	margin-bottom:15px;
}



@media screen and (max-width: 1000px) {
	
.container {
  position: relative;
  max-width: 100%;
  margin: 3px auto;
  display: flex;
  flex-direction: column;
}

.left,.right {
	width:100%;
}

.left img {
	display: block;
    width: 100%; /* Make the image fill the container horizontally */
    height: auto;
}
.container .left .content{
	position: absolute;
	height:333px;
    top: 0;
    width:100%;
	background: rgba(0, 0, 0, 0);
}

.right form {
	margin-top:24px;
	margin-bottom:24px;
}


.right h4 {
	margin-top:24px;
	
}

.right a{
	margin-bottom:24px;
}

.right form input {
	width:81%;
	margin-top:5px;
	margin-bottom:5px;
}

.right form .button {
	margin-top:24px;
	margin-bottom:24px;
}

}


