@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin:0;
    padding:0;
    font-family: Montserrat,'Arial';
}

body{
    height:100vh;
    width:100vw;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 8px;
    box-sizing: border-box;
}

#head-text{
    display: none;
}
#ig-logo{
    display: none;
}
#login-box{
    display:none;
}
#footer-box{
    display:none;
}

#ig-window-header{
    grid-column: span 3 / span 3;
    margin:0;
    padding:0;
}

#ig-window-bg{
    grid-column: span 3 / span 3;
    grid-row: span 3 / span 3;
    grid-column-start: 1;
    grid-row-start: 2;
    border:2px solid #ffffff00;
    margin:0;
    padding:0;
}

#ig-window-footer{
    grid-column: span 5 / span 5;
    grid-column-start: 1;
    grid-row-start: 5;
    border-top:2px solid rgba(110, 110, 110, 0.174);
    margin:0;
    padding:0;
}

#ig-window-login-box{
    grid-column: span 2 / span 2;
    grid-row: span 4 / span 4;
    grid-column-start: 4;
    grid-row-start: 1;
    width:90%;
    border-left:2px solid rgba(110, 110, 110, 0.174);
    margin:0;
    padding:0;
}

#ig-window-bg-img{
    max-height :450px;
    min-height:0px;
}
#ig-window-icon{
    display:flex;
    align-items: flex-start;
    flex-direction: row;
    width:100%;
    margin-left: 30px;
    margin-top:25px;
}

.pink{
    color:#FF0465;
}
.orange{
    color:#FF5705;
}

#window-login-text{
    display: flex;
    align-items: flex-start;
    width:85%;
    font-weight: 600;
    margin-bottom: 20px;

}

.dark{
    font-weight: 600;
}

#ig-window-logo{
    padding:20px;
    max-height: 75px;
    min-height: 0px;
}

#ig-window-footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    font-size: 12px;
    color:#808080;
}

#ig-window-footer-1{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    font-size: 12px;
    width:60%;
}

#ig-window-footer-2{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    font-size: 12px;
    width:20%;
}

#ig-window-bg{
    display: flex;
    align-items: center;
    justify-content: center;
}

#ig-window-text{
    text-align: center;
    font-size:40px;
    font-weight: 500;
}

#ig-window-login-box{
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
    width:100%;
}

#window-login{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width:100%;
}

#window-username{
    width:80%;
    height: 35px;
    padding:10px 16px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(203, 210, 217);
    border-radius:12px;
    align-items: center;
    margin:10px;
    font-weight:600;
    font-size:16px;
    line-height: 1.3;
}
#window-password{
    width:80%;
    height: 35px;
    padding:10px 16px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(203, 210, 217);
    border-radius:12px;
    align-items: center;
    margin:10px;
    font-weight:600;
    font-size:16px;
    line-height: 1.3;
}
#window-login-btn{
    background-color: #0064E0;
    height: 50px;
    width:85%;
    border-radius: 22px;
    margin:10px;
    color:white;
}

#window-login-extra-btn{
    width:100%;
    margin-top:60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 700;
}

.facebook{
    border-radius: 22px;
    font-weight: 700;
    width:85%;
    height:40px;
    margin:10px;
    background-color: white;
    color:black;
    border:1px solid rgb(203, 210, 217);
}

.create-account{
    border-radius: 22px;
    font-weight: 700;
    width:85%;
    height:40px;
    margin:10px;
    background-color: white;
    color:#0064E0;
    border:1px solid #0064E0;
}

#meta-logo{
    width:60px;
    height:12px;
    object-fit: contain;
    background-color: rgb(0, 140, 248);
    overflow: hidden;
    mask-image: url(https://static.cdninstagram.com/rsrc.php/v4/yM/r/DDgwTv3JehF.png);
    mask-size: contain;
    object-position: 10000px 10000px;
}















@media (max-width:768px){
    *{
        margin:0;
        padding:0;
        font-family:Montserrat,"Arial";
    }

    #ig-window-text{
        display: none;
    }
    #ig-window-icon{
        display: none;
    }
    #ig-window-bg{
        display:none;
    }
    #ig-window-footer{
        display:none;
    }
    #ig-window-login-box{
        display:none;
    }
    #ig-logo{
        display: block;
    }
    body{
        box-sizing: border-box;
        display:flex;
        flex-direction: column;
        align-items: center;
        height:100vh;
        width:100%;
    }

    #head-text{
        display: inline;
        padding:15px;
        font-size: 13px;
        font-weight:500;
        color: rgb(70, 90, 105);
        letter-spacing: -0.04px;
        white-space: pre-wrap;
        overflow-wrap: break-word;
    }

    #ig-logo{
        margin-top: auto;
        max-height: 60px;
        min-height: 0px;
        object-fit: contain;
        overflow: hidden;
    }

    #login-box{
        margin-top: auto;
        display:flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    #username{
        width:85%;
        height: 40px;
        padding:10px 16px;
        background: rgb(255, 255, 255);
        border: 1px solid rgb(203, 210, 217);
        border-radius:12px;
        align-items: center;
        margin:10px;
        font-weight:600;
        font-size:16px;
        line-height: 1.3;
    }
    #password{
        width:85%;
        height: 40px;
        padding:10px 16px;
        background: rgb(255, 255, 255);
        border: 1px solid rgb(203, 210, 217);
        border-radius:12px;
        align-items: center;
        margin:10px;
        font-weight:600;
        font-size:16px;
        line-height: 1.3;
    }
    #login-btn{
        background-color: #0064E0;
        height: 40px;
        width:90%;
        border-radius: 22px;
        margin:10px;
        color:white;
    }

    /*Margin-Top:auto to adjust the spaces*/

    #footer-box{
        margin-top:auto;
        display: flex;
        align-items: center;
        justify-content: center;
        width:100%;
        flex-direction: column;
        padding-bottom: 40px;
    }

    #create-btn{
        border-radius: 22px;
        width:90%;
        height:40px;
        margin:10px;
        background-color: white;
        color:#0064E0;
        border:1px solid #0064E0;
    }
    #meta-logo{
        width:60px;
        height:12px;
        object-fit: contain;
        background-color: rgb(70, 90, 105);
        overflow: hidden;
        mask-image: url(https://static.cdninstagram.com/rsrc.php/v4/yM/r/DDgwTv3JehF.png);
        mask-size: contain;
        object-position: 10000px 10000px;
    }
}