@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;600&display=swap');
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
body {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
}
header {
	position: absolute;
	height: auto;
	width: 100%;
	padding: 20px 10px;
}
header img {
	width: 150px;
}
.logo {
	font-size: 2rem;
    color: #537dab;
	font-weight: bolder;
}
.containerone {
	padding-top: 100px;
	min-height: 100vh;
	width: 100%;
	display: flex;
	flex-direction: column-reverse;
	justify-content: flex-end;
	align-items: center;
	/* background-image: linear-gradient(135deg, hsl(0, 0%, 100%), hsl(168, 100%, 98%)); */
	padding-bottom: 50px;
}
.containerone .left {
	width: 100%;
	padding: 50px 30px 0 30px;
}
.containerone .right {
	width: 100%;
	height: 300px;
	background-image: url(../images/bg1copy.png);
	background-position: right;
	padding-right: 100px;
	background-size: cover;
}
.containerone .right img {
	width: 100%;
	height: 100%;
}
.containerone .left h1 {
	letter-spacing: .5rem;
	text-align: center;
	font-size: 3.2rem;
	font-weight: 200;
	text-transform: uppercase;
	color: #ccd6dc;
	line-height: 3.5rem;
}
.containerone .left h1 span {
	color: hsl(0, 6%, 24%);
	font-weight: 700;
}
.containerone .left p {
	max-width: 450px;
	font-weight: 700;
	text-align: center;
	color: #ccd6dc;
	font-size: .9rem;
	line-height: 1.5rem;
	margin: 20px auto 40px auto;
}
.containerone form {
	position: relative;
	display: block;
	height: 50px;
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
}
.containerone form input {
	position: absolute;
	width: 100%;
	outline: none;
	border: 1px solid #ccd6dc;
	height: 100%;
	border-radius: 50px;
	padding-left: 30px;
	font-family: 'Poppins', sans-serif;
	font-size: 1.1rem;
}
.containerone form label {
	visibility: hidden;
	position: absolute;
}
.containerone form button {
	cursor: pointer;
	position: absolute;
	right: 0;
	border: none;
	outline: none;
	color: white;
	width: 70px;
	height: 100%;
	border-radius: 50px;
	background: hsl(0, 6%, 24%);
    background: #537dab;
	/* box-shadow: 0px 0px 18px 1px #f4aaab82; */
	transition: .3s ease box-shadow;
}
/* .containerone form button:hover {
	background-image: linear-gradient(135deg, hsl(175, 80%, 86%), hsl(172, 74%, 74%));
	box-shadow: 0px 0px 13px 2px #f4aaabbf;
} */
.containerone form input::placeholder {
	color: #ccd6dc;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 1.1rem;
	opacity: .8;
}
.containerone form .error-icon {
	display: inline-block;
	position: absolute;
	right: 85px;
	top: 24%;
	display: none;
}
.containerone form .error-text {
	position: absolute;
	left: 30px;
	top: 40px;
	font-size: 1rem;
	display: none;
}
.containerone form.error .error-icon,
.containerone form.error .error-text {
	display: block;
}
.containerone form.error input {
	border: 2px solid hsl(0, 93%, 68%);
}

.footer {
	padding: 50px 50px;
	background-color: black;
	color: white;
	font-size: 14px;
}
/* footer p {
	font-size: 2rem;
	color: #537dab;
} */
.footer a {
	color: #fff;
	text-decoration: none;
}
.footer a:hover {
	text-decoration: underline;
	color: #fff;
}
.seconddiv {
    display: flex;
    justify-content: center;
    /* align-items: flex-end; */
}
.lastdiv {
    display: flex;
    justify-content: center;
    /* align-items: flex-end; */
}

@media only screen and (min-width: 768px) {
	header {
		padding-left: 10%;
	}
	.containerone {
		padding-top: 0;
		flex-direction: row;
		padding-bottom: 0;
	}
	.containerone .right {
		width: 80%;
		height: 100vh;
		background-image: url(../images/bg\ 1.png);
		background-blend-mode: darken;
		background-position: right;
		padding-right: 100px;
		background-repeat: no-repeat;
		background-position-x: right;
	}
	.containerone .left {
		padding-top: 28vh;
		width: 100%;
		height: 100vh;
		padding-left: 10%;
		background-image: url(../images/bg-pattern-desktop.svg);
		background-size: cover;
		background-position: center;
	}
	.containerone .left h1 {
		text-align: left;
		font-size: 5rem;
		line-height: 5.5rem;
	}
	.containerone .left p {
		margin-left: 0;
		text-align: left;
		font-size: 1.1rem;
	}
	.containerone form {
		margin-left: 0;
	}
	.containerone form button {
		width: 80px;
	}
}
@media only screen and (max-width: 600px) {
    
    .footer {
        padding: 50px 10px;
    }
    .seconddiv {
        display: flex;
        justify-content: start;
        /* align-items: flex-end; */
    }
    .lastdiv {
        display: flex;
        justify-content: start;
        /* align-items: flex-end; */
    }

  }