* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

#container_log {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh; 
  background: linear-gradient(45deg, #f0f4ff, #f9faff);
}

.container_sign {
  width: clamp(300px, 95%, 500px);
  min-height: 55vh;
  background: #fefefe;
  box-shadow: 0 0 7px 5px rgba(0, 0, 0, 0.3);
  margin-top: 6rem;
  border-radius: 8px;
  overflow: hidden;
}

.forms .content {
  display: block;
  width: 100%;
  padding: 20px 35px;
  text-align: center;
}

.content .title {
  font-size: 25px;
  margin: 10px 0;
}

.field {
  /* border-top: 2px solid rgba(2, 4, 3, 0.2); */
}

.field label[for="remember"] {
  float: left;
  font-size: 13px;
  margin: 8px 0;
}

.field .login-input {
  display: inline-flex;
  width: 100%;
  margin: 10px 0;
  background: #f0f0f0;
  border-radius: 6px;
  position: relative;
}

.field .login-input .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 100%;
  background: transparent;
}

.field .login-input input {
  width: 100%;
  height: 35px;
  padding: 0 5px;
  background: transparent;
  border: none;
  outline: none;
}

.field .login-input #loginPasswordToggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.login-input .error-message {
  position: absolute;
  bottom: -11px; /* Adjust based on margin-bottom */
  left: 35px;
}

.error-message {
  color: red;
  font-size: 12px;
  display: block;
  margin-top: 5px;
  margin-left: 5px;
}


button {
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  margin: 15px 0;
  padding: 6px 0;
  background: #e49c1e;
  color: #ffffff;
  border-radius: 8px;
  border: none;
}

button.signin {
  background: #e49c1e;
}

.forgot {
  margin: 10px 0;
  text-align: left;
}

.forgot a {
  color: #007bff;
  text-decoration: none;
}

.forgot a:hover {
  text-decoration: underline;
}

.text {
  margin-top: 20px;
  font-size: 14px;
}

.text a {
  color: #007bff;
  text-decoration: none;
}

.text a:hover {
  text-decoration: underline;
}
