

*
{
    box-sizing:         border-box;
    -moz-box-sizing:    border-box;
    -webkit-box-sizing: border-box;
}

body
{
  margin: 0;
  padding: 0;
  background: #BE1B23;
  font-family: arial, sans-serif;
}






.center-div
{
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 350px;
  height: 300px;
}








a
{
  text-decoration: none
}



.user-card
{
  width: 350px;
  height: 300px;
  margin: 0px auto;
  position: relative;
  background: #fff;
  overflow: hidden;
  box-shadow:         0 1px 3px 0 rgba(0,0,0,0.08);
  -moz-box-shadow:    0 1px 3px 0 rgba(0,0,0,0.08);
  -webkit-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.08);
  border-radius:         5px;
  -moz-border-radius:    5px;
  -webkit-border-radius: 5px;
}

input
{
  width: 100%;
  height: 40px;
  border-radius:         5px;
  -moz-border-radius:    5px;
  -webkit-border-radius: 5px;
  border: 1px solid #cccccc;
  padding: 3px 12px;
  margin: 6px 0;
}

input:focus
{
  outline: none;
  border: 1px solid #BE1B23;
  transition:         all .5s ease-in-out;
  -o-transition:      all .5s ease-in-out;
  -moz-transition:    all .5s ease-in-out;
  -webkit-transition: all .5s ease-in-out;
}

.login-box,
.signup-box
{
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: calc(100% - 25px);
  background: #fff;
  border-radius:         20px;
  -moz-border-radius:    20px;
  -webkit-border-radius: 20px;
}

.login-box{
  padding: 20px 40px 10px 40px;
  right: 0px;
}

.signup-box{
  padding: 40px;
  right: -350px;
}

.login, .signup
{
  text-align: center;
  color: #fff;
  background: #BE1B23;
  line-height: 30px;
  opacity: 0.95;
  cursor: pointer
}

.login:hover{opacity: 1}


.title h2 {
text-align: center;
font-size: 24px;
  line-height: 0.3;
}

.title p {
text-align: center;
font-size: 12px;
  line-height: 0.3;
}

.or
{
  display: block;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #BE1B23;
  position: relative;
  margin: 20px 0;
}

.or:before
{
  content: 'or';
  width: 40px;
  height: 18px;
  position: absolute;
  top: -5px;
  right: calc(50% - 20px);
  background-color: #fff;
  text-align: center;
  line-height: 10px;
  color: #555
}

.login-with-fb,
.login-with-google
{
  width: 100%;
  height: 40px;
  display: block;
  margin: 15px 0;
  color: #fff;
  text-align: center;
  line-height: 40px;
  font-size: 14px;
  opacity: .95;
  border-radius:         3px;
  -moz-border-radius:    3px;
  -webkit-border-radius: 3px;
}

.login-with-fb:hover,
.login-with-google:hover
{
  opacity: 1;
}

.login-with-fb
{
  background: #527EBF
}

.login-with-google
{
  background: #DB4A37;
}

.login-with-fb .icon,
.login-with-google .icon
{
  float: left;
  font-size: 21px;
  width: 50px;
  height: 26px;
  margin: 7px;
  padding: 2px;
  text-align: center;
  border-right: 1px solid #fff;
}


/**** footer *****/

.user-card .footer
{
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 25px;
  text-align: center;
  color: #666;
  font-size: 13px;
  font-family: sans-serif;
}

.footer a
{
  color: #BE1B23;
}

@keyframes heart{
  0%{
    transform:         scale(1, 1);
    -ms-transform:     scale(1, 1);
    -webkit-transform: scale(1, 1);
  }
  50%{
    transform:         scale(1.5, 1.5);
    -ms-transform:     scale(1.5, 1.5);
    -webkit-transform: scale(1.5, 1.5);
  }
  100%{
    transform:         scale(1, 1);
    -ms-transform:     scale(1, 1);
    -webkit-transform: scale(1, 1);
  }
}