body {
    background-image: url(login.jpg);
    background-repeat: no-repeat;
    width: 100%;
    height: min-content;
   }
   
   
  .container {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
    min-height: 100vh;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .form-inner {
    background: white;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
  }
  
  .form-inner form {
    width: 100%;
    text-align: left;
  }
  
  .field {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .field input {
    width: 100%;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    background: #f1f1f1;
    padding: 10px;
    font-size: 16px;
    outline: none;
  }
  
  .field input[type="submit"] {
    width: 100%;
    color: white;
    background: #1b998b;
    border-radius: 4px;
    padding: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
  }
  
  .pass {
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
  }
  
  .signup {
    text-align: center;
    margin-top: 20px;
  }
  
  .signup a {
    color: #1b998b;
    text-decoration: none;
  }
  
  .signup a:hover {
    text-decoration: underline;
  }