@charset "UTF-8";
body {
	margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #DBD9D0;
}

body a {
	text-decoration: none;
}

.Login-Container {
	width: 100vw;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.Login-Page {
	overflow: hidden;
	height: 100%;
	width: 100%;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.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;
}

.Profile {
	margin: 80px 0px;
	align-items: center;
	justify-content: center;
	display: flex;
}

.Profile-IMG {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: 50%;
	width: 280px;
	height: 280px;
}

.Profile-IMG img {
	width: inherit;
}

.Login {
	position: fixed;
	left: 0;
	bottom: 0;
	width: calc(100vw - 60px);
	padding: 20px 30px;
	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;
	margin-bottom: 50px;
}

.Text h1 {
	font-size: 30px;
	font-weight: 600;
}

.Text p {
	font-size: 15px;
}


.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
}

.Button1,
.Button2 {
	margin: 20px 0px;
}