@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css?family=Noto+Serif&display=swap');
* {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #E3E3E3;
}

footer {
    background-color: black;
    bottom: 0;
    position: fixed;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 999;
}

footer p {
    color: #ffc61a;
    font-size: 12px;
}

h1 {
    font-family: 'Noto Serif', serif;
    font-size: 26px;
    letter-spacing: 1px;
}

p {
    font-size: 14px;
    text-align: center;
    color: rgb(200, 200, 200);
}

hr {
    display: block;
    height: 3px;
    border: 0;
    border-top: 3px solid #ffc61a;
    margin: 0px 0px 135px 0px;
    padding: 0;
    width: 50px;
}

.title {
    color: rgb(200, 200, 200);
    font-size: 16px;
}

a {
    padding: 10px;
    text-align: center;
    text-decoration: none;
    color: rgb(200, 200, 200);
}

.socialIcons {
    margin: 30px 0;
    text-align: center;
    color: #ffc61a;
}

.socialIcons a {
    border: 1px solid #ffc61a;
    color: #ffc61a;
    border-radius: 15%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    height: 30px;
    width: 30px;
    text-decoration: none;
}

.socialIcons a:hover {
    background-color: #ffc61a;
    color: white;
    transition: all .5s ease-out;
}


/*====================================
 SIGN IN - HERO IMAGE
====================================*/

.container_SignUp {
    border-radius: 25px 0px 25px 25px;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    background: white;
    box-shadow: 0px 0px 38px 22px rgba(0, 0, 0, 0.14);
    position: absolute;
    overflow: hidden;
    width: 650px;
    max-width: 100%;
    height: 450px;
    z-index: 1;
}

.heroSignInBackgroundOverlay {
    background: rgba(0, 0, 0, 0.5);
}

.containerHeroSignIn {
    display: grid;
    grid-template-rows: 80% 20%;
}

.signInContent {
    padding: 30px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    height: 360px;
    text-align: center;
    color: white;
    margin: 0px;
}

.heroSignInButton {
    display: flex;
    height: 90px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.buttonHeroSignIn {
    font-size: 14px;
    border: 2px solid white;
    border-radius: 50px;
    width: 150px;
    height: 40px;
    background: linear-gradient(to right, #ffc61a 50%, white 50%);
    background-size: 200% 100%;
    background-position: right top;
    transition: all .3s ease-out;
    color: #ffc61a;
}

.buttonHeroSignIn:hover {
    cursor: pointer;
    color: white;
    background-position: left bottom;
}

.buttonHeroSignIn:focus {
    outline: none;
}


/*====================================
    SIGN UP FORM
====================================*/

.containerSignUp {
    display: grid;
    grid-template-rows: 30% 50% 20%;
}

.containerFormSignUp {
    color: rgb(200, 200, 200);
}

.title {
    padding: 20px 0px 10px 0px;
    text-align: center;
}

form {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    padding: 0 50px;
    height: 100%;
}

input {
    width: 100%;
    outline: 0;
    border-width: 0px 0px 1px 0px;
    border-color: rgb(200, 200, 200);
    padding: 20px 10px;
}

input:focus {
    border-color: #ffc61a;
}

textarea:focus,
input:focus {
    color: black;
    border-width: 0px 0px 1px 5px;
}

input,
select,
textarea {
    color: #ffc61a;
}

input:focus+label,
input:active+label {
    color: rgb(200, 200, 200);
}

.formSignUpButton {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 2em
}

.buttonFormSignUp {
    font-size: 14px;
    border: 2px solid #ffc61a;
    color: white;
    border-radius: 50px;
    width: 150px;
    height: 40px;
    background: linear-gradient(to right, white 50%, #ffc61a 50%);
    background-size: 200% 100%;
    background-position: right top;
    transition: all .3s ease-out;
}

.buttonFormSignUp:hover {
    cursor: pointer;
    color: #ffc61a;
    background-position: left bottom;
}

.buttonFormSignUp:focus {
    outline: none;
}


/*====================================
 SIGN UP - HERO IMAGE
====================================*/

.container_SignIn {
    border-radius: 25px 0px 25px 25px;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    background: white;
    box-shadow: 0px 0px 38px 22px rgba(0, 0, 0, 0.14);
    position: absolute;
    overflow: hidden;
    width: 650px;
    max-width: 100%;
    height: 450px;
    z-index: 1;
    transition: all 1s ease;
}

.myStyle {
    transform: translateX(-20%);
    z-index: 0;
    opacity: 0;
}

.heroSignUpBackgroundOverlay {
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    width: 100%;
}

.containerHeroSignUp {
    display: grid;
    grid-template-rows: 80% 20%;
}

.signUpContent {
    padding: 30px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    height: 360px;
    text-align: center;
    color: white;
    margin: 0px;
}

.heroSignUpButton {
    display: flex;
    height: 90px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.buttonHeroSignUp {
    font-size: 14px;
    border: 2px solid white;
    border-radius: 50px;
    width: 150px;
    height: 40px;
    background: linear-gradient(to right, #ffc61a 50%, white 50%);
    background-size: 200% 100%;
    background-position: right top;
    transition: all .3s ease-out;
    color: #ffc61a;
}

.buttonHeroSignUp:hover {
    cursor: pointer;
    color: white;
    background-position: left bottom;
}

.buttonHeroSignUp:focus {
    outline: none;
}


/*====================================
    SIGN IN FORM
====================================*/

.containerSignIn {
    display: grid;
    grid-template-rows: 30% 50% 20%;
}

.containerFormSignIn {
    color: rgb(200, 200, 200);
}

.title {
    padding: 20px 0px 10px 0px;
    text-align: center;
}

form {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    padding: 0 50px;
    height: 100%;
}

input {
    width: 100%;
    outline: 0;
    border-width: 0px 0px 1px 0px;
    border-color: rgb(200, 200, 200);
    padding: 20px 10px;
}

input:focus {
    border-color: #ffc61a;
}

textarea:focus,
input:focus {
    color: black;
    border-width: 0px 0px 1px 5px;
}

input,
select,
textarea {
    color: #ffc61a;
}

input:focus+label,
input:active+label {
    color: rgb(200, 200, 200);
}

.formSignInButton {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.buttonFormSignIn {
    font-size: 14px;
    border: 2px solid #ffc61a;
    color: white;
    border-radius: 50px;
    width: 150px;
    height: 40px;
    background: linear-gradient(to right, white 50%, #ffc61a 50%);
    background-size: 200% 100%;
    background-position: right top;
    transition: all .3s ease-out;
}

.buttonFormSignIn:hover {
    cursor: pointer;
    color: #ffc61a;
    background-position: left bottom;
}

.buttonFormSignIn:focus {
    outline: none;
}


/*====================================
      RESPONSIVE
====================================*/

@media screen and (max-width: 700px) {
    .container_SignUp {
        display: grid;
        grid-template-rows: 30% 70%;
        grid-template-columns: 50% 50%;
        width: 320px;
        max-width: 100%;
        height: 550px;
    }
    .myStyle {
        transform: translateY(-30%);
    }
    /*========= SIGN IN - HERO IMAGE ======*/
    .heroSignInBackground {
        grid-row: 1;
        grid-column: 1 / span 2;
    }
    .heroSignInOverlay {
        grid-row: 1;
        grid-column: 1 / span 2;
    }
    .containerHeroSignIn {
        display: grid;
        grid-template-columns: 50% 50%;
        grid-template-rows: none;
    }
    .signInContent {
        height: auto;
        padding: 11px;
    }
    .signInContent p {
        display: none;
    }
    hr {
        display: none;
    }
    .heroSignInButton {
        height: auto;
    }
    .buttonHeroSignIn {
        width: 125px;
    }
    /*========= SIGN UP - FORM ========*/
    .containerSignUp {
        grid-row: 2 / span 2;
        grid-column: 1 / span 2;
    }
    .socialIcons {
        margin: 10px;
    }
    .buttonFormSignUp {
        width: 125px;
    }
    input {
        padding: 10px;
    }
    /*========= SIGN UP - HERO IMAGE ======*/
    .container_SignIn {
        display: grid;
        grid-template-rows: 30% 70%;
        grid-template-columns: 50% 50%;
        width: 320px;
        max-width: 100%;
        height: 550px;
    }
    .heroSignUpBackground {
        grid-row: 1;
        grid-column: 1 / span 2;
    }
    .heroSignUpOverlay {
        grid-row: 1;
        grid-column: 1 / span 2;
    }
    .containerHeroSignUp {
        display: grid;
        grid-template-columns: 50% 50%;
        grid-template-rows: none;
    }
    .signUpContent {
        height: auto;
    }
    .signUpContent p {
        display: none;
    }
    hr {
        display: none;
    }
    .heroSignUpButton {
        height: auto;
    }
    .buttonHeroSignUp {
        width: 125px;
    }
    /*============ SIGN IN - FORM =========*/
    .containerSignIn {
        grid-row: 2 / span 2;
        grid-column: 1 / span 2;
    }
    .socialIcons {
        margin: 10px;
    }
    .buttonFormSignIn {
        width: 125px;
    }
    input {
        padding: 10px;
    }
}