.form {
    background-color: #fff;
    margin: 0 auto;
    padding: 16px 20px 16px 20px;
    max-width: 350px;
    border-radius: 8px;
  }
  
  .form-title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    text-align: center;
    color: #000;
  }
  
  .input-container {
    position: relative;
  }
  
  .input-container input {
    outline: none;
    border: 1px solid #e5e7eb;
    margin: 8px;
    margin-left:-10px ;
  }
  
  .input-container input {
    background-color: #fff;
    padding: 16px;
    padding-right: 48px;
    font-size: 14px;
    line-height: 20px;
    width: 300px;
    border-radius: 8px;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.10);
  }
  
  .submit {
    padding: 12px 20px 12px 20px;
    background-color: #261ebb;
    margin-top: 8px;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    width: 100%;
    border-radius: 8px;
    text-transform: uppercase;
  }

  .submit:hover{
    background-color: #102C57;
  }

  .signup-link {
    color: #6B7280;
    font-size: 14px;
    line-height: 30px;
    text-align: center;
  }
  
  .signup-link a {
    text-decoration: underline;
  }