body {
  background-color: #F5F6FA;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  position: relative;
  font-family: 'DM Sans', 'Ubuntu', sans-serif;
}


.container {
  width: 585px;
  height: 715px;
  background-color: #FFFFFF;
  padding: 0;
  border-radius: 18px;
  box-shadow: 6px 6px 54px rgba(0, 0, 0, 0.05);
  position: relative;
}

.inner-container {
  position: relative;
  width: 483px;
  margin: auto;
  padding: 40px 0;
}

.form-header {
  margin-bottom: 20px;
}

.logo-center {
  text-align: center;
  margin-bottom: 30px;
}

.natura-logo {
  width: 130px;
  height: auto;
}

.form-header h2 {
  font-family: 'DM Sans', 'UbuntuBold', sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 65px;
  letter-spacing: -0.02em;
  color: #202224;
  margin-bottom: 10px;
}

.form-header p {
  font-family: 'DM Sans', 'Ubuntu', sans-serif;
  font-weight: 400;
  font-size: 18.6px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #606060;
  margin-bottom: 50px;
}

.form-group {
  margin-bottom: 20px;
  width: 100%;
  padding: 0;
}

.form-group label {
  font-family: 'DM Sans', 'Ubuntu', sans-serif;
  font-weight: 500;
  font-size: 16.28px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #202224;
  display: block;
  margin-bottom: 10px;
}

.form-control {
  box-sizing: border-box;
  border: 1.16px solid #CACACA;
  border-radius: 11.14px;
  padding: 20px;
  width: 100%;
  height: 58px;
  font-family: 'DM Sans', 'Ubuntu', sans-serif;
  font-size: 16.28px;
}

.form-control::placeholder {
  color: #A7A7A7;
  opacity: 1;
}

.form-control:focus {
  border-color: #FF6900;
  outline: none;
}

.password-container {
  position: relative;
}

.eye-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  width: 23px;
  height: 23px;
}

.text-right {
  text-align: right;
  margin-top: 10px;
}

#forgot-password {
  font-family: 'DM Sans', 'Ubuntu', sans-serif;
  font-weight: 500;
  font-size: 16.28px;
  line-height: 23px;
  letter-spacing: -0.02em;
  color: #FF6900;
  text-decoration: none;
}

.btn-login {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 11.63px 9.3px;
  gap: 11.63px;
  background: #EB6619;
  border-radius: 18.6px;
  border: none;
  width: 100%;
  height: 62.78px;
  margin-top: 85px;
  cursor: pointer;
  font-family: 'DM Sans', 'UbuntuBold', sans-serif;
  font-weight: 700;
  font-size: 16.28px;
  line-height: 100%;
  text-align: center;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  transition: background-color 0.3s ease-in-out;
}

.btn-login:hover {
  background-color: #e55a00;
}

.invalid {
  color: red;
  font-size: 14px;
  margin-top: 5px;
  display: block;
}

@media (max-width: 768px) {
  .container {
    width: 90%;
    max-width: 500px;
  }
  
  .inner-container {
    width: 90%;
    padding: 40px 0;
  }
  
  .form-header h2 {
    font-size: 32px;
    line-height: 48px;
  }
}

@media (max-width: 480px) {
  .container {
    width: 95%;
  }
  
  .inner-container {
    width: 90%;
    padding: 30px 0;
  }
  
  .form-header h2 {
    font-size: 28px;
    line-height: 40px;
  }
  
  .btn-login {
    height: 50px;
  }
}
