@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,400;1,600&display=swap');
:root{
	font-size: 100%;
	font-size: 16px;
	line-height: 1.5;
}
*{
	padding: 0px;
	margin: 0px;
    font-family: 'Poppins', sans-serif;
}
h2{
	font-size: 1.5rem;
	font-weight: 600;
	text-align: left;
}
a{
	text-decoration: none;
	color: var(--primary-blue);
}
a:hover{
	text-decoration: underline;
}
.flex-container {
  display: flex;
  flex-direction: row;
}

.flex-left {
  width: 50%;
  height: 100vh;
}
.flex-left img{
  width: 100%;
  height: 100vh;
}
.flex-right {
  width: 50%;
  min-height: 100vh;
  flex-direction: column;
}
.flex-right h2{
	margin-bottom: 20px;
}
.flex-right form{
	width: 400px;
	margin: 0 auto;
	margin-top: 15%;
	align-items: center;
	justify-content: center;
}
form input[type="text"], form input[type="email"] {
	display: block;
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 5px;
	padding: .8em;
	margin-bottom: 1.00em;
	font-size: 0.875rem;
}
label{
	display: block;
	margin-bottom: 0.5rem;
	font-size: 1.10rem;
	color: #000;
}
.country{
	display: block;
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 5px;
	padding: .8em;
	margin-bottom: 1.00em;
	font-size: 0.875rem;
	margin-bottom: 20px;
}
.subscribe-btn{
	display: block;
	width: 100%;
	background: #000;
	color: white;
	font-weight: 400;
	border: none;
	padding: .9rem;
	border-radius: 8px;
	font-size: 1.25rem;
	cursor: pointer;
	letter-spacing: 0.5px;
	margin-bottom: 20px;
}
.subscribe-btn:hover{
	background: #5b2296;
	cursor: pointer;
}
@media screen and (max-width: 1200px) {
 .flex-container {
  display: flex;
  flex-direction: column;
}

.flex-left {
  width: 100%;
  height: 100vh;
}

.flex-right {
  width: 100%;
  height: 100vh;
}
	.flex-left img{
		display: none;
	}
	.flex-left {
		background: url("../../../../Content/Images/OM_1200_res.jpg");
		background-repeat: no-repeat;
		background-position: top;
		background-attachment: fixed;
	}
	.flex-left {
	  height: 85vh;
	}
	.flex-right form{
		margin-top: 7%;
	}
}
@media screen and (max-width: 700px) {
	
	.flex-left {
		background: url("../../../../Content/Images/OM_700_res.jpg");
		background-repeat: no-repeat;
		background-position: top;
		background-attachment: fixed;
		background-size: contain;
	}
	.flex-left {
	  height: 87vh;
	}
	
	h2{
		text-align: center;
	}
}

@media screen and (max-width: 400px) {
	
	.flex-left {
		background: url("../../../../Content/Images/OM_375_res.jpg");
		background-repeat: no-repeat;
		background-position: top;
		background-attachment: fixed;
		background-size: contain;
	}
	.flex-left {
	  height: 85vh;
	}
	.flex-right form{
		width: 300px;
		margin: 0 auto;
		margin-top: 15%;
		margin-bottom: 10%;
		background-color: rgba(255, 255, 255, 0.8);
	}
	
	form input[type="text"], form input[type="email"] {
		font-size: 0.775rem;
	}
	label{
		font-size: .9rem;
	}
	
	.subscribe-btn{
		font-size: 1rem;
	}
	.flex-right form p{
		margin-bottom: 0px;
		font-size: 14px;
		margin: 0;
		padding: 0;
	}
	h2{
		text-align: center;
	}
}
