
html,body {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#login-wrapper {
  width: 100%;
  min-height: 100vh;
  background: url('../images/bgn2.jpg');
  background-size:  cover;
  color:  #FFF;
}

.form-control {
  border: 1px solid #F2F2F2 !important;
  height: 40px !important;
  background-color:  transparent !important;rgba(255,255,255,0.6) !important;
  color:  #FFF;
}

.form-control::focus {
  background-color:  transparent !important;
}

::placeholder {
  color:  #FFF !important;
}


.Grid {
  display: flex;
}

.Grid-cell {
  flex: 1;
}
.Grid-cell .left {
  background: transparent;
  background-color:transparent;
  width: 100%;
  min-height:100vh;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.Grid-cell .right {
  position:relative;
  background-color: rgba(59,175,218,0.95);rgba(231,188,146,0.95);
  width: 100%;
  min-height: 100vh;
  padding: 55px 15px;
  border-top-left-radius: 35px;
  border-bottom-left-radius: 35px;
  box-shadow: 1px 2px 5px #222;
}

/*.Grid-cell .right:before{
  border-right: 80px solid #F4F4F4;
  border-top: 80px solid transparent;
  border-bottom: 80px solid transparent;
  width:0;
  height:0;
  content:"";
  position: absolute;
  top: 35%;
  margin-left: -80px;
  left:0;
  z-index: 1000;
}*/

.Grid-cell .right h2 {
  margin: 25px 0 10px 0;
}

/* With gutters */
.Grid--gutters {
  margin: -1em 0 0 -1em;
}
.Grid--gutters > .Grid-cell {
  padding: 1em 0 0 1em;
}

/* Alignment per row */
.Grid--top {
  align-items: flex-start;
}
.Grid--bottom {
  align-items: flex-end;
}
.Grid--center {
  align-items: center;
}

/* Alignment per cell */
.Grid-cell--top {
  align-self: flex-start;
}
.Grid-cell--bottom {
  align-self: flex-end;
}
.Grid-cell--center {
  align-self: center;
}

/* Base classes for all media */
.Grid--fit > .Grid-cell {
  flex: 1;
}
.Grid--full > .Grid-cell {
  flex: 0 0 100%;
}
.Grid--1of2 > .Grid-cell {
  flex: 0 0 50%
}
.Grid--1of3 > .Grid-cell {
  flex: 0 0 33.3333%
}
.Grid--1of4 > .Grid-cell {
  flex: 0 0 25%
}

/* Small to medium screens */
@media (min-width: 24em) {
  .small-Grid--fit > .Grid-cell {
    flex: 1;
  }
  .small-Grid--full > .Grid-cell {
    flex: 0 0 100%;
  }
  .small-Grid--1of2 > .Grid-cell {
    flex: 0 0 50%
  }
  .small-Grid--1of3 > .Grid-cell {
    flex: 0 0 33.3333%
  }
  .small-Grid--1of4 > .Grid-cell {
    flex: 0 0 25%
  }
}

/* Large screens */
@media (min-width: 48em) {
  .large-Grid--fit > .Grid-cell {
    flex: 1;
  }
  .large-Grid--full > .Grid-cell {
    flex: 0 0 100%;
  }
  .large-Grid--1of2 > .Grid-cell {
    flex: 0 0 50%
  }
  .large-Grid--1of3 > .Grid-cell {
    flex: 0 0 33.3333%
  }
  .large-Grid--1of4 > .Grid-cell {
    flex: 0 0 25%
  }
}

