section {
    height: 100vh;
    background-color: #ececec;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .signup-form {
    min-width: 400px;
    text-align: center;
    display: none;
  }


  #login-form {
    min-width: 400px;
    text-align: center;
    display:none;
  }

  #user-profile {
    display:none;
    min-width: 400px;
  }

  #email-verification {
    display:none;
    width:400px;
  }

  #forgot-password-btn {
    font-size:17px;
    text-decoration: underline;
    cursor:pointer;
  }

  #reset-password-form {
    display:none;
  }

  #login-with-facebook-btn {
    margin-top:10px;
  }

  #profile-picture-img {
    width:100px;
    height:100px;
    border:1px solid black;
    margin-bottom:15px;
  }


  #profile-picture-img:hover {
    opacity:0.9;
    border:5px solid black;
    cursor:pointer;
  }

  