body {
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	max-height: 100vh;
	font-family: 'Jost', sans-serif;
	background: linear-gradient(to bottom, #343a40, #78B07C, #78B07C);
}

.main {
	width: 600px;
	height: 450px;

	background-color: rgb(245, 245, 245);
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 5px 20px 50px #000;
	display: flex;
}

.logo {
	width: 40%;
	display: flex;
	align-items: center;
	justify-content: right;
}

.logo img {
	max-width: 90%;
	height: auto;
	border-radius: 50%;
}

.signup {
	width: 60%;
	/* 60% del ancho para el formulario */
	padding: 20px;
	/* Agrega algo de espacio interno */
	display: flex;
	align-items: center;
	/* Centra el contenido verticalmente */
	justify-content: center;
	/* Centra el contenido horizontalmente */
	flex-direction: column;
	/* Organiza los elementos en columna */
}

.signup form {
	width: 90%;
}

label {
	color: #78B07C;
	font-size: 2.3em;
	justify-content: center;
	display: flex;
	margin: 10px;
	font-weight: bold;
	cursor: pointer;
	transition: .5s ease-in-out;
}

input {
	width: 100%;
	height: 40px;
	background: #e0dede;
	justify-content: center;
	display: flex;
	margin: 20px auto;
	padding: 12px;
	border: none;
	outline: none;
	border-radius: 5px;
}

button {
	width: 60%;
	height: 40px;
	margin: 10px auto;
	justify-content: center;
	display: block;
	color: #fff;
	background: #343a40;
	font-size: 1em;
	font-weight: bold;
	margin-top: 30px;
	outline: none;
	border: none;
	border-radius: 5px;
	transition: .2s ease-in;
	cursor: pointer;
}

button:hover {
	background: #78B07C;
}

@media (max-width: 450px) {
	.main {
		width: 78% !important;
		height: 75% !important;
		background-color: rgb(245, 245, 245);
		overflow: hidden;
		border-radius: 10px;
		box-shadow: 5px 20px 50px #000;
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 20px;
	}


	.logo {
		width: 100%;
		justify-content: center;
		margin-top: 25px;
	}

	.logo img {
		width: 50%;
		height: auto;
	}
	.signup {
		width: 100%;
		padding: 20px;
	}
	
}