* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    border: none;
  }
  
  #container_log {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(45deg, #f0f4ff, #f9faff);
  }
  
  button {
    cursor: pointer;
  }
  
  .container_sign {
    width: clamp(300px, 95%, 500px);
    min-height: 65vh;
    background: #fefefe;
    box-shadow: 0 0 7px 5px rgba(0, 0, 0, 0.3);
    margin-top: 6rem;
    border-radius: 8px;
    overflow: hidden;
    padding: 20px 35px;
    text-align: center;
  }
  
  .content .title {
    font-size: 25px;
    margin: 10px 0;
  }
  
  .field .login-input {
    display: flex;
    width: 100%;
    margin: 10px 0;
    background: #f0f0f0;
    border-radius: 6px;
    position: relative;
  }
  
  .field .login-input:focus-within {
    outline: 1.5px solid rgba(2, 4, 3, 0.5);
  }
  
  .field .login-input .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    background: transparent;
  }
  
  .field .login-input input {
    width: 100%;
    height: 35px;
    padding: 0 5px;
    background: transparent;
    border: none;
  }
  
  .field .login-input input:focus {
    outline: none;
  }
  
  .field .login-input .fa-eye,
  .field .login-input .fa-eye-slash {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    cursor: pointer;
  }
  
  .field label[for="agree"] {
    display: block;
    text-align: left;
    font-size: 13px;
    margin: 8px 0;
  }
  
  .field label[for="agree"] .span {
    color: green;
    font-weight: 600;
  }
  
  .signin {
    font-size: 16px;
    width: 100%;
    margin: 15px 0;
    padding: 8px 0;
    background: #e49c1e;
    border-radius: 8px;
  }
  
  .text {
    font-size: 14px;
  }
  
  .error-message {
    color: red;
    font-size: 12px;
    display: block;
    margin-top: 5px;
    margin-left: 5px;
}

.login-input .error-message {
    position: absolute;
    bottom: -11px; /* Adjust based on margin-bottom */
    left: 35px;
}
  
  .login-input.error input {
    border: 1px solid red;
  }
  