@charset "UTF-8";
body {
	margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #DBD9D0;
}

body a {
	text-decoration: none;
}

.Sign-Up-Container {
	width: 100vw;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.Sign-Up-Page {
	overflow: hidden;
	height: 100vh;
	width: 100vw;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-image: url("Images/sign up bg.png")
}

.logo-box {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px;
}

.logo-frame {
	overflow: hidden;
	border-radius: 50%;
	width: 70px;
	height: 70px;
	background-color: #D86B32;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo-frame img {
	width: 90px;
	height: 90px;
}

.Sign-Up {
	position: fixed;
	left: 0;
	bottom: 0;
	width: calc(100vw - 60px);
	padding: 20px 30px;
	margin-top: 35vh;
	border-top-left-radius: 50px;
	border-top-right-radius: 50px;
	background-color: white;
	box-shadow: 2px 2px 8px 3px rgba(0, 0, 0, 0.2);
}

.Text {
	text-align: left;
	line-height: 1;
	color: #D86B32;
}

.Text h1 {
	font-size: 30px;
	font-weight: 600;
}

.Form-Box {
	margin: 50px 0px 60px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.Form {
	width: inherit;
	display: grid;
	grid-gap: 20px;
}

.Form input {
	padding: 25px;
	border-radius: 10px;
	outline: none;
	border: 1px solid #B9B9B9;
	box-shadow: none;
	width: fit-border;
}

.Form input::placeholder {
	color: #B9B9B9;
}

.Buttons {
	margin: 30px 0px;
	width: 100%;
}

.Done {
	width: inherit;
}

.Buttons button {
	padding: 25px;
	border-radius: 10px;
	border: none;
	background-color: #3C6C60;
	color: white;
	width: 100%;
	font-size: 15px;
	font-weight: 600;
}

.Buttons button:active,
.Buttons button:hover {
	background-color: #254136;
}

