@import url('https://fonts.googleapis.com/css?family=Montserrat:400,800');
body {
    font-family: 'Montserrat', sans-serif;
}
#signInSignUpBox {
    width: 60%;
    height: 95%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 10px 10px 13px -6px rgba(0, 0, 0, 0.75);
}
#overlay {
    left: 0;
    border: 1px solid blue;
    width: 50%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background-color: yellow;
}
#signUp {
    transform: translateX(0);
    transition-duration: 1s;
}
#signIn {
    transform: translateX(20%);
    transition-duration: 1s;
}
.overlay-moveHalfRight #signIn {
    transform: translateX(0);
    transition-duration: 1s;
}
.overlay-moveHalfRight {
    animation-name: move-slide-right;
    animation-fill-mode: forwards;
    animation-duration: 1s;
}
@keyframes move-slide-right {
    0% {
        left: 0;
    }
    100% {
        left: 50%;
    }
}
.overlayInner-moveHalfLeft #signUp {
    transform: translateX(-20%);
    transition-duration: 1s;
}
.overlay-moveHalfLeft {
    animation-name: move-slide-back-right;
    animation-fill-mode: forwards;
    animation-duration: 1s;
}
@keyframes move-slide-back-right {
    0% {
        left: 50%;
    }
    100% {
        left: 0;
    }
}
#overlayInner {
    position: absolute;
    width: 200%;
    display: flex;
}
.overlayInner-moveHalfLeft {
    animation-name: move-slide-left;
    animation-fill-mode: forwards;
    animation-duration: 1s;
}
@keyframes move-slide-left {
    0% {
        left: 0;
    }
    100% {
        left: -100%;
    }
}
.overlayInner-moveHalfRight {
    animation-name: move-slide-back-left;
    animation-fill-mode: forwards;
    animation-duration: 1s;
}
@keyframes move-slide-back-left {
    0% {
        left: -100%;
    }
    100% {
        left: 0;
    }
}
#overlayInner > div {
    flex: 1;
}
#forms {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -100;
    display: flex;
    width: 100%;
    height:100%;
    /*overflow: hidden;*/
}
#forms > div {
    flex: 1;
    background-color: lightgreen;
}
#signUpForm, #signInForm {
    overflow: hidden;
}
#signUpForm .holder {
    transform: translateX(0);
    transition-duration: 1s;
}
#signUpForm.shiftLeft .holder {
    transform: translateX(-100%);
    transition-duration: 1s;
}
#signInForm .holder {
    transform: translateX(0);
    transition-duration: 1s;
}
#signInForm.shiftRight .holder {
    transform: translateX(100%);
    transition-duration: 1s;
}
.use_your_account_text{
    font-weight: 600;
}
#signInForm, #signUpForm {
    border-radius: 0px;
    text-align: center;
}
#signInForm h1, #signUpForm h1 {
    margin-top: 4.5rem;
    font-size:2.5rem;
    font-weight: 600;
}
#signInForm p, #signUpForm p {
    font-size: 0.9rem;
    margin-top: 1.6rem;
}
#signInForm input, #signUpForm input {
    border: none;
    background-color: #fff;
    margin-top: 0.8rem;
    line-height: 25px;
    padding: 5px 35px;
    width: 65%;
    font-size:13px;
    letter-spacing: 0.8px;
}
#signInForm button, #signUpForm button {
    text-transform: uppercase;
    color: #fff;
    background-color: #1FDEDE;
    border-radius: 20px;
    border: 1px solid #1FDEDE;
    padding: 10px 40px;
    cursor: pointer;
}

#signUpForm button {
    margin-top: 20px;
    border-color:#fff;
}
#signInForm button:focus, #signUpForm button:focus {
    outline: none;
}
#signInForm button:active, #signUpForm button:active {
    padding: 9px 38px;
    transition-duration: 0.1s;
}

a.social-media-button {
    display: inline-block;
    border: 1px solid #bdbdbd;
    text-align: center;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    line-height: 40px;
    color: #000;
    margin:0 10px;
}
a.social-media-button img{
    width:40px;
}
#forms > div {
    background-color: #fff;
}
#overlay {
    /*background: linear-gradient(to bottom, rgba(246, 41, 12, 1) 100%, #f0c4be 100%);*/
    background-color: #fff;
    border: none;
    /*border-radius: 20px;*/
}
#signUp, #signIn {
    text-align: center;
    padding: 0px 40px;
    color: #000;
}
#signUp button, #signIn button {
    margin-top: 20px;
    text-transform: uppercase;
    color: #000;
    background-color: transparent;
    border-radius: 20px;
    border: 3px solid #1fdede;
    padding: 10px 40px;
    cursor: pointer;
}
#signUp button:focus, #signIn button:focus {
    outline: none;
}

div#signUp .flyira_logo {
    display: block;
    margin: 0 0 4em 0;
}

div#signUpForm {
    background: #1fdede;
    color: #fff !important;
}

div#signInForm {
    background-color: #1fdede;
    color: #fff;
    font-weight: 500;
}
.holder h1 {
    font-size: 1.8rem;
}
/*# sourceMappingURL=style.css.map */

input[type="text"],input[type="password"] {
    width: 100%;
    border: 2px solid #aaa;
    border-radius: 4px;
    margin: 8px 0;
    outline: none;
    padding: 8px;
    box-sizing: border-box;
    transition: 0.3s;
}

input[type="text"]:focus {
    border-color: dodgerBlue;
    box-shadow: 0 0 8px 0 dodgerBlue;
}

.inputWithIcon input[type="text"] {
    padding-left: 40px;
}

.inputWithIcon {
    position: relative;
}

.inputWithIcon img {
    width:30px;
    position: absolute;
    left: 18%;
    top: 25%;
    padding: 9px 8px;
    color: #aaa;
    transition: 0.3s;
}

.inputWithIcon input[type="text"]:focus + i {
    color: dodgerBlue;
}

.inputWithIcon.inputIconBg i {
    background-color: #aaa;
    color: #fff;
    padding: 9px 4px;
    border-radius: 4px 0 0 4px;
}

.inputWithIcon.inputIconBg input[type="text"]:focus + i {
    color: #fff;
    background-color: dodgerBlue;
}

input#rememberMe {
    width: 10%;
}


.signup_wave {
    position: relative;
}
.signup_wave img {
    top: 25px;
    position: absolute;
    left: -9%;
    width: 300%;
}
.signin_wave {
    position: relative;
}
.signin_wave img {
    /*top: -25px;*/
    /*position: absolute;*/
    /*left: -11%;*/
    /*width: 200%;*/
}

.toggle-password {
    /* float: right; */
    cursor: pointer;
    margin-right:unset;
    margin-top: unset;
    position: absolute;
    top: 40%;
    right: 18%;
    color: #ddd;
}
