/*LOGIN STYLE FILE
*
*  MENU
*
*  1.LOGIN FORM
*  2.LOGGED POPUP
*
*  COLORS
*
*  BG-BODY -> #2ecc71
*  BG-INPUT -> #2c3e50
*  YL-NOTE -> #fffa65
*  BG-TITLEPOPUP -> #16a085
*/

@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');
/*1*/
form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  height: 200px;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.formDiv {
  background-color: #FFF;
  width: 500px;
  height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, .75);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, .75);
}

.bigContainer {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.yellowNote {
  width: 200px;
  height: auto;
  background-color: #fffa65;
  position: absolute;
  bottom: 5%;
  left:5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
          box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  font-family: 'Indie Flower', cursive;
}

.errorPopup, .properPopup{
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  background-color: red;
  width: 100%;
  text-align: center;
  padding: 10px 0;
}

.properPopup{
  background-color: #2ecc71;
}
/*/1*/

/*2*/

/*/2*/
/*3*/
.loginAnimation{
  width: 100%;
  height: 100vh;
  background-color: #000;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 999;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.loginAnimation img{
  width: 400px;
}

/*/3*/
