body {
	display: flex;
	flex-direction: column;
	width: 90%;
    margin: auto;
	gap: 80px;
    font-family: 'Montserrat', sans-serif;
    background-color: rgb(255 255 255);
}

.navbar {
  padding-top: 30px;
}

.logo a {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  color: #000000;
}

.welcome-footer {
	text-align: center;
	margin-bottom: 20px;
}

.welcome-footer p {
    font-size: 16px;
	margin-bottom: 5px;
}

.main-content {
	display: flex;
    flex-direction: column;
	align-items: center;
	margin: auto;
	gap: 20px;
	max-width: 40%;
	color: #000000;
	border-radius: 20px;
	padding: 30px;
}

.sign-up-text {
	width: 90%;
}

.sign-up-main {
	width: 90%;
}

.main-content h2 {
	font-size: 26px;
}

.main-content p {
	font-size: 18px;
}

.main-content label {
	font-size: 18px;
}

.sign-up-form-div {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-bottom: 10px;
}

.sign-up-form-button {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 16px;
	border-radius: 5px;
	padding: 12px;
	background: #c8c8c859;
	color: #165259e0;
	border: none;
	width: 100%;
	margin-top: 20px;
}

.sign-up-form-button:hover {
  color: #000000;
}

.have-an-account {
	margin: 0;
	font-size: 16px !important;
}

.have-an-account-link {
	color: #165259e0;
	text-decoration: none;
}

.have-an-account-link:hover {
	color: #000000;
}

.error-message {
    width: 85%;
    color: #fff;
    background: #ff0000ad;
    padding: 10px 15px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
    text-align: center;
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

input {
  padding: 10px;
  border: 1px solid #c8c8c8;
  border-radius: 5px;
  font-size: 16px;
}

input:focus {
  border: 2px solid #000000;
}

.main {
	display: flex;
}

.main-img {
	background: url("/en/main-img.webp") center/cover no-repeat, #0000005e;
	background-blend-mode: overlay;
	border-radius: 20px;
	width: 60%;
}

@media (max-width: 378px) {
	
	.main-img {
		display: none;
    }
	
	.main-content {
		max-width: 100%;
		padding: 0;
    }
	
	.sign-up-text {
		width: 100%;
    }
	
	.sign-up-main {
		width: 100%;
    }
	
	.sign-up-form-button {
		width: 100%;
    }
}

@media screen and (max-width: 480px) and (min-height: 520px) {
	
	.main-img {
		display: none;
    }
	
	.main-content {
		max-width: 100%;
		padding: 0;
    }
	
	.sign-up-text {
		width: 100%;
    }
	
	.sign-up-main {
		width: 100%;
    }
	
	.sign-up-form-button {
		width: 100%;
    }
	
	.welcome-footer {
		position: absolute;	
	    bottom: 5px;
	    left: 0;
	    right: 0;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) and (min-height: 805px) {
	.welcome-footer {
		position: absolute;	
	    bottom: 5px;
	    left: 0;
	    right: 0;
    }
}

@media screen and (min-width: 1280px) and (min-height: 800px) {
	.welcome-footer {
		position: absolute;	
	    bottom: 5px;
	    left: 0;
	    right: 0;
    }
}

@media screen and (min-width: 481px) and (max-width: 767px) {
	.main-img {
		display: none;
    }
	
	.main-content {
		max-width: 100%;
		padding: 0;
    }
	
	.sign-up-text {
		width: 100%;
    }
	
	.sign-up-main {
		width: 100%;
    }
	
	.sign-up-form-button {
		width: 100%;
    }
}