
@import url("https://fonts.googleapis.com/css?family=Raleway");
$lightMaroon:#fff;
$darkMaroon:#320919;
$yellow:#ffaf53;
body {
  background-color: white;
  background-color:
#948d8b
;
  font-family: "Raleway", sans-serif;
}
.wrapper {
  width: 350px;
  height: 500px;
  margin: auto;
  margin-top: 50px;
  position: relative;
  .form {
    border-radius: 10px;
    overflow: hidden;
    height: inherit;
    width: inherit;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 100;
    background-color: $darkMaroon;
    transition: all ease 1s;
    box-shadow: 0px 0px 0.5px 0.5px lighten($yellow,20%);
    &.form-horizontal {
      transform: rotate(-90deg);
      z-index: 99;
    }
    .title {
      font-size: 30PX;
      text-align: center;
      color: #320919;
      text-transform: uppercase;
      margin-bottom: 15px;
      background-color: $yellow;
      &:hover {
        cursor: pointer;
      }
    }
    form {
      padding: 10px 20px;
      .profileImage {
        text-align: center;
        font-size: 8rem;
        color: $yellow;
      }
      &.loginForm {
        margin: 30px auto;
      }
      &.signupForm {
        .profileImage {
          font-size: 6rem;
        }
      }
      .form-group {
        position: relative;
        .form-icon {
          position: absolute;
          height: 50px;
          width: 40px;
          text-align: center;
          line-height: 50px;
          top: 0;
          bottom: 0;
          left: 0;
          margin: auto;
          color:$lightMaroon;
          background-color: $yellow;
          border-top-right-radius: 80px;
          border-bottom-right-radius: 80px;
        }
      }
      input {
        border-radius: 0px;
        background-color: $lightMaroon;
        padding: 24px;
        box-shadow: none;
        border-color: $lightMaroon;
        padding-left: 45px;
        color: $yellow;
        &::placeholder{
          color:$yellow;
        }
      }
      button[type="submit"] {
        display: block;
        width: 100%;
        padding: 10px;
        border: none;
        border-radius: 0px;
        background-color: $yellow;
        color: $darkMaroon;
        text-transform: uppercase;
        font-weight:600;
      }
    }
  }
}




/*link*/
.info{
  position:fixed;
  bottom:10px;
  left: 10px;
  right: 10px;
  margin:auto;
  text-align:center;
  color:#212121;
  font-weight:600;
  width:250px;
  font-size:2rem;
}
  /*a{
   font-size:5rem; 
    display:block;
    color:#212121;
  }*/

