* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Poppins', sans-serif;
	background-color: #f5f5f5;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	color: #000;
}

.container {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 600px;
	padding: 20px;
}

.logo {
	width: 180px;
	height: auto;
	margin-bottom: 20px;
	object-fit: contain;
}

h1 {
	font-size: 48px;
	font-weight: 600;
	margin-bottom: 15px;
	text-align: center;
	color: #000;
	letter-spacing: -1px
}

p {
	font-size: 16px;
	color: #333;
	margin-bottom: 40px;
	text-align: center;
	letter-spacing: -1px
}

.form-group {
	display: flex;
	width: 100%;
	max-width: 500px;
	background: #fff;
	overflow: hidden;
}

input {
	flex: 1;
	padding: 24px 24px;
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	color: #000;
	font-weight: 500;
	outline: none;
	border: 1px solid #adafdb;
	border-radius: 0px;
	letter-spacing: -1px
}

input:focus {
	font-family: 'Poppins', sans-serif;
	border: 2px solid #1d202b;
	padding: 22px 22px;
}

input::placeholder {
	color: #999;
}

button {
	background-color: #1d202b;
	/* Dark navy color from image */
	color: #fff;
	border: none;
	padding: 24px 24px;
	font-size: 16px;
	cursor: pointer;
	font-weight: 500;
	width: 30%;
}

button:hover {
	background-color: #2c3140;
}
.full input{
	width:100%;
	margin-bottom: 10px;
}
.full button{
	width:100%;
}
.full.form-group {
	flex-direction: column;
	border: none;
	background: transparent;
}
/* Mobile responsiveness */
@media (max-width: 600px) {
	.form-group {
		flex-direction: column;
		border: none;
		background: transparent;
	}

	input {
		width: 100%;
		margin-bottom: 10px;
	}

	button {
		width: 100%;
	}
}