
* {
    box-sizing: border-box;
    margin: 0;
}

.login-popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1099;
    background-color: transparent; /* change to transparent */
    visibility:hidden;
    opacity: 0;
    transition: all 1s ease;
}

.login-popup.show {
    visibility: visible;
    opacity: 1;
}


.login-popup .box{
    background-color:white;
    width: 750px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-wrap: wrap;
    opacity: 0;
    margin-left: 50px;
    transition:all 1s ease;
}

.login-popup.show .box {
    opacity: 1;
    margin-left: 0;
} 

.login-popup .box .img-area {
    flex: 0 0 50%;
    max-width: 50%; 
    position: relative;
    overflow: hidden;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    background-color: rgba(255, 255, 255, 0.287);
}
 
.login-popup .box .img-area h1 {
font-size: 30px;
}

.login-popup .box .img-area .img {
position:absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-image: url("./images/OVER.logo-01.png");
background-size: cover;
background-position: center;
animation: zoomInOut 7s linear infinite;
z-index: -1;
transition: .5s ease;
background-color: black;
}

/* experimenting with hovering over image and revealing BIO  */

.login-popup .box .img-area .img:hover {
    opacity: 1;
}


#footer {
    position: fixed;
    padding: 10px;
    bottom: 0;
    width: 100%;
    height: 2.5rem;            /* Footer height */
  }



@keyframes zoomInOut{
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}



.login-popup .box .form {
    flex: 0 0 50%;
    max-width: 100%;
    padding:40px 30px;
    
}

.login-popup .box .form h1 {
    color: #000000;
    font-size: 30px;
    margin: 0 0 30px;
    
}
.login-popup .box .form-control {
    height: 35px;
    margin-bottom: 20px;
    width: 100%;
    border: none;
    border-bottom: 1px dashed black;
    font-size: 15px;
    color: black;
}

.login-popup .box .form-control:focus {
outline: none;
}

.login-popup .box .form label {
    font-size: 15px;
    color: #555555;
}
.login-popup .box .form .btn:hover {
background-color: #cccccc;
color: black;
border: 2px, solid black;
}

.login-popup .box .form .btn {
    width: 100%;
    color: white;
    background-color: black;
    margin-top: 40px;
    height: 40px;
    border: none;
    text-transform: uppercase;
    cursor: pointer;
}

.login-popup .box .form .btn:focus {
outline: none;
}

.login-popup .box .form .close{
    position: absolute;
    right: 10px;
    top: 0px;
    font-size: 30px;
    cursor: pointer;
}


@media(max-width: 767px) {
    .login-popup .box {
        width: calc(100% - 30px);
    }
    .login-popup .box .img-area {
        display: none;
    }
    .login-popup .box .form {
        flex: 0 0 100%;
        max-width: 100%;
    }
}






p{
    font-family: 'Roboto', sans-serif;
    font-size: 100px;
    background-color: rgba(255, 255, 255, 0.418);
   
}

#leftOver:hover {
    background-color: hsl(141, 53%, 53%);
    color: white;
}

#hangOver:hover {
    background-color: hsl(48, 100%, 67%);
    color: black;
}

#line {
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    border: 10px;
    border-color: black;
}


#leftOver {
    margin-top: 5%;
    animation: slide 4s;
}

#select {
    animation: select 2s;
}


#hangOver {
    animation: slideLeft 4s;
}

@keyframes select {
    0% {
        transform: translate3d(0px, 0px, 0px);
        opacity: 0%;
    }
    50% {
        transform: translate3d(0px, 0px, 0px);
        opacity: 0%;
    }
    100% {
        transform: translate3d(0px, 0px, 0px);
    }
}

@keyframes slide {
    0% {
        transform: translate3d(0px, -80px, 0px);
        opacity: 0%;
    }
    50% {
        transform: translate3d(0px, -80px, 0px);
        opacity: 0%;
    }
    100% {
        transform: translate3d(0px, 0px, 0px);
    }
}

@keyframes slideLeft {
    0% {
        transform: translate3d(0px, 80px, 0px);
        opacity: 0%;
    }
    50% {
        transform: translate3d(0px, 80px, 0px);
        opacity: 0%;
    }
    100% {
        transform: translate3d(0px, 0px, 0px);
    }
}



