@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;700&display=swap');


html {
  height: 100%;
  width: 100%;
  font-family: 'Nunito', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #ECF4E6;
  display: flex;
  align-items: center !important;
  justify-content: center;
  color: #030502;
  height: 100vh;
  flex-direction: column;
}

.container {
  display: flex;
  flex-direction: column;
  gap: 2rem 1.5rem;
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(3, 5, 2, 0.07);
  background: #FFF;
  box-shadow: 0px 1px 2px 0px rgba(3, 5, 2, 0.07);
  width: 100%;
  min-width: 320px;
  max-width: 430px;
}

.header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0px;
}

h1 {
  font-size: 24px;
  text-align: center;
  color: #596250;
}


input[type=text] {
  display: flex;
  width: 100%;
  height: 2.8rem;
  padding: 12px 48px 12px 12px;
  border-radius: 8px;
  border: 1px solid rgba(89, 98, 80, 0.09);
  background: #FAFBF9;
  box-shadow: 1px 1px 3px 0px rgba(3, 5, 2, 0.15) inset;
  text-align: center;
  font-size: 16px;
}

input[type=text]::placeholder {
  color: rgba(3, 5, 2, 0.60);;
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
  
}

input[type=text]:focus {
  outline: 3px solid #596250;
  box-shadow: none;
}


.tip {
  text-align: center;
  width: 100%;
}

.signature {
  display: flex;
  color: rgba(0, 0, 0, 0.5);
  font-size: 12px;
  text-align: center;
  margin-top: 3%;
}

a {
  color: #596250;
}