@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;900&display=swap');
*{
	box-sizing:border-box;
}
body {
  margin: 0;
  width: 100vw;
  height: 100vh;
  background: #f8fffa;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  place-items: center;
  overflow: hidden;
  font-family: poppins;
  
}

.container {
  position: relative;
  width: 430px;
 box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  border-radius: 20px;
  padding: 40px;
  box-sizing: border-box;
  background: #ecf0f3;
}

.brand-logo {
  margin: auto;
  
  box-sizing: border-box;
 
}

.brand-title {
  margin-top: 10px;
  font-weight: 900;
  font-size: 1.7rem;
  color: #d14c22;
  
  letter-spacing: 1px;
}

.inputs {
  text-align: left;
  margin-top: 30px;
}

label, input, button,select {
 
  width: 100%;
  padding: 0;
  border: none;
  outline: none;
  box-sizing: border-box;
}

label {
  margin-bottom: 4px;
  color:#385e45;
  font-weight:bold;
}

label:nth-of-type(2) {
  margin-top: 12px;
}

input::placeholder,select::placeholder {
  color: gray;
}

input{
  background: #ecf0f3;
  padding: 10px;
  padding-left: 20px;
  height: 50px;
  font-size: 14px;
  font-weight:bold;
  
  box-shadow: inset 6px 6px 6px #cbced1, inset -6px -6px 6px white;
}

select {
  background: #ecf0f3;
  padding: 10px;
  padding-left: 20px;
  height: 35px;
  font-size: 14px;
  font-weight:bold;
  
  box-shadow: inset 6px 6px 6px #cbced1, inset -6px -6px 6px white;
}

button {
  margin-top: 20px;
  background: #385e45;
  height: 40px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 900;
  transition: 0.5s;
  color:#FFF;
}

button:hover {
  box-shadow: none;
}

a {
  position: absolute;
  font-size: 8px;
  bottom: 4px;
  right: 4px;
  text-decoration: none;
  color: black;
  background: yellow;
  border-radius: 10px;
  padding: 2px;
}

h1 {
  position: absolute;
  top: 0;
  left: 0;
}