@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Inter:wght@300;400;500&family=Poppins:wght@200;300;400;500&family=Roboto:wght@100;300;500&display=swap');
body{
    height: 100vh;
    margin: 0;
    background-color: rgba(122, 122, 122, 0.05);
}

.login-page{
    height: 88%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    gap: 30px;
}

.left{
    background-image: url(https://static.cdninstagram.com/rsrc.php/v3/y4/r/ItTndlZM2n2.png);
    height: 630px;
    width: 430px;
    margin-top: 30px;
}

.img{
    position: relative;
    top: 30px;
    left: 157px;
    height: 535px;
    width: auto;
}

.img-1{
    position: absolute;
    height: 535px;
    width: auto;
    animation: visibility1 10s infinite;
}

.img-2{
    position: absolute;
    height: 535px;
    width: auto;
    animation: visibility2 10s infinite;
}

.img-3{
    position: absolute;
    height: 535px;
    width: auto;
    animation: visibility3 10s infinite;
}

.img-4{
    position: absolute;
    height: 535px;
    width: auto;
    animation: visibility4 10s infinite;
}

@keyframes visibility1 {
    0% {
        visibility: visible;
    }

    25%{
        visibility: hidden;
    }

    50%{
        visibility: hidden;
    }

    100% {
        visibility: hidden;
    }
}

@keyframes visibility2 {
    0% {
        visibility: hidden;
    }

    25%{
        visibility: visible;
    }

    50%{
        visibility: hidden;
    }

    100% {
        visibility: hidden;
    }
}

@keyframes visibility3 {
    0% {
        visibility: hidden;
    }

    25%{
        visibility: hidden;
    }

    50%{
        visibility: visible;
    }

    100% {
        visibility: hidden;
    }
}

@keyframes visibility4 {
    0% {
        visibility: hidden;
    }

    25%{
        visibility: hidden;
    }

    50%{
        visibility: hidden;
    }

    100% {
        visibility: visible;
    }
}

.box-1{
    width: 350px;
    background-color: white;
    border: 1px solid rgb(219,219,219);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: center;
    align-items: stretch;
    padding-top: 40px;
    padding-bottom: 25px;
}

.logo{
    padding: 0px 84px;
    margin-bottom: 34px;
}

input{
    background-color: rgb(244, 244, 244);
    padding: 12px 10px;
    margin: 3px 35px;
    border-radius: 3px;
    border: 1px solid rgb(226, 226, 226);
    font-size: 12px;
    color: rgb(226, 226, 226)
}

.login-button{
    background-color: rgba(0, 148, 246, 0.701);
    border: none;
    color:white;
    padding: 9px;
    border-radius: 8px;
    margin: 10px 35px;
    font-weight: 600;
}

.or{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-style: bold;
    color: rgb(142, 142, 142);
    margin-top: 8px;
    margin-bottom: 15px;
}

.line{
    background-color: rgb(189, 189, 189);
    width: 118px;
    height: 1px;
    margin-left: 10px;
    margin-right: 10px;
}

.facebook{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: rgb(56, 81, 133);
    font-size: 14px;
    font-weight: 500;
}

.forgot-password{
    font-size: 12px;
    color: rgb(56, 81, 133);
    text-align: center;
    font-weight: 400;
    margin-top: 8px;
}

.box-2{
    font-size: 14px;
    border: 1px solid rgb(219,219,219);
    text-align: center;
    padding-top: 8px;
    padding-bottom: 8px;
    margin: 10px 0;
    background-color: white;
}

.sign-up{
    color: rgb(0, 148, 246);
    font-size: 15px;
    font-weight: 500;
}

.get-app{
    text-align: center;
    font-size: 13.5px;
    padding: 7px;
}

.app-store{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

.app-img{
    width: 136px;
}

.footer{
    height: 12%;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgb(155, 155, 155);
}

.line-1{
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 10px;
}

.line-2{
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

/*Mobile Ver*/

@media only screen and (max-width: 860px) {
   .left{
    display: none;
   }

   .footer{
    margin-left: 12%;
    margin-right: 12%;
   }
}
