*{
    box-sizing: border-box;
}
main{
    margin: 0;
}
/* NAV EDIT */
#logo, #cartamount,#_95-shopping path,#_95-shopping polygon{
    color: white;
    stroke: white;
}
#Layer_1 path{
    fill: white;
}
.ham-menu span{
    background-color: white !important;
}
/* NAV EDIT END */
body{
    font-weight: 300;
    background: #181818;
    color: #fff;
    overflow: hidden;
    margin: 0px;
}
a:any-link, a:visited{
    color: inherit;
    text-decoration: none;
}
h1,h2,h3,h4,h5,h6{
    font-weight: 300;
}

#wrapper{
    display: flex;
    flex-direction: row;
}

#left{
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

#right{
    flex: 1;
}

/* Sign In */
#signup{
    margin-top: 10rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    padding-bottom: 2rem;
}

#signup form{
    width: 80%;
    padding-bottom: 3rem;
}

#signup .logo{
    margin-bottom: 4rem;
}

#signup .logo img{
    width: 350px;
}

#signup ::placeholder{
    font-size: 0.9rem;
    font-weight: 500;
}

#signup .text-input{
    margin-bottom: 2rem;
    background-color: transparent;
    width: 100%;
    border: none;
    border-bottom:1px solid #7afda1;
    color: #fff;
    padding: 0.5rem 1rem;
    line-height: 1.3rem;

}
.text-input:focus{
    outline: none;
}
#signup .secondary-btn,
.or,
.links{
    width: 60%;
}

#signup .links a{
    display: block;
    text-align: center;
    color: #fff;
    text-decoration: none;
    margin-bottom: 1rem;
}
#signup .or .bar{
    flex: auto;
    border: none;
    height: 1px;
    background: #f2f2f2;
}

#signup .or{
    display: flex;
    flex-direction: row;
    margin-bottom: 1.2rem;
    align-items: center;
}
#signup .or span{
    color:#f2f2f2;
    padding: 0px 0.8rem;
}

#main-footer{
    color: #f4f4f4;
    text-align: center;
    font-size: 0.8rem;
    padding-top: 5rem;
    background-color: #181818;
}
/* Showcase */
#showcase{
    display: flex;
    justify-content: center;
    text-align: center;
    background: url(../img/signup-bg.jpg) no-repeat center center / cover;
    height: 100vh;
    align-items: center;
}

#showcase .showcase-text{
    font-size: 3rem;
    font-weight: 500;
    color: var(--white2);
    font-family: "Young-Serif";
}
#showcase-content{
    display: inline-block;
}

/* cursor*/
#strongWord{
    border-right: 5px solid var(--white2);
    white-space: nowrap;
    overflow: hidden;
    animation:
        typing 2s,
        cursor 0.4s step-end infinite alternate;
}

/* cursor blink */

@keyframes cursor {
    50% {border-color: transparent}
}


/* Footer */
#main-footer a {
    color: #7afda1;
}
/* Button */

.primary-btn{
    padding: 0.7rem 1rem;
    height: 2.7rem;
    display: block;
    border: 0;
    font-weight: 500;
    background: #676767;
    color: #181818;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    transition: box-shadow 0.8s;
}

#signup .primary-btn{
    width: 100%;
}

.primary-btn:hover{
    box-shadow: 0px 0px 10px 7px #7afda1;
}

.secondary-btn{
    padding: 0.7rem 1rem;
    height: 2.7rem;
    display: block;
    border: 1px solid #f4f4f4;
    font-weight: 500;
    background: transparent;
    color: #fff;
    transition: all 0.8s;
    text-align: center;
    position: relative;
}

.secondary-btn:hover{
    border: 1px solid #7afda1;
    color: #7afda1;
}
#terms{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.termsBox{
    align-items: center;
    margin-bottom: 0.5rem;
}


/* Media Queries */
@media(min-width:1200px){
    #left{
        flex: 4;
    }
    #right{
        flex: 6;
    }
}

@media (max-width:768px){
    #right{
        display: none;
    }
    #left{
        justify-content: start;
        margin-top: 2rem;
        overflow: auto;
    }

    #signup .logo{
        margin-bottom: 3vh;
    }

    #main-footer{
        padding-top: 1rem;
    }

}