@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;700&display=swap');
* {
  	box-sizing: border-box;
  	font-family: "Figtree", Helvetica, sans-serif;
  	font-size: 16px;
  	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
}
a{color: #3d683e;}
body {
  	background-color: #435165;
}
.login {
  	width: 400px;
  	background-color: #ffffff;
  	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
  	margin: 100px auto;
}

.login form {
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: center;
  	padding-top: 20px;
}
.login form label {
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	width: 50px;
  	height: 50px;
  	background-color: #3d683e;
  	color: #ffffff;
}
.login form input[type="password"], .login form input[type="text"] , .login form input[type="email"]{
  	width: 310px;
  	height: 50px;
  	border: 1px solid #dee0e4;
  	margin-bottom: 20px;
  	padding: 0 15px;
}
.login form input[type="submit"] {
  	width: 100%;
  	padding: 15px;
 	margin-top: 20px;
  	background-color: #5b5b5b;
  	border: 0;
  	cursor: pointer;
  	font-weight: bold;
  	color: #ffffff;
  	transition: background-color 0.2s;
}
.login form input[type="submit"]:hover {
	background-color: #2a2a2a;
  	transition: background-color 0.2s;
}
.lang{
  margin-left: 30px;
  color: #fff;
  background-color: #5b6574;
  padding: 6px;
  border-radius: 8px;
  padding-top: 4px;
}

.lang:hover{
	background-color: #2a2a2a;
  	transition: background-color 0.2s;
  }

.header {
  align-items:center;
  display:flex;
justify-content:right;
  position:relative;
  padding:28px 32px;
  border-bottom:1px solid #e6e9ec;
  min-height:86px;
}
.header .logo {  
    position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 240px;
  height: 45px;
  object-fit: contain;
  left: -10px;
}
.header h1{
  margin:0;
  font-size:30px;
  letter-spacing:0.5px;
  color:#3d683e;
  font-weight:600;
}

/* small DE badge right of title */
.header .lang {  
    display: inline-block;
  margin-left: 14px;
  background: #5f6a75;
  color: #fff;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
}