*{
    margin: 0;
    padding: 0;
    font-size: 14px;
    text-decoration: none;
    box-sizing: border-box;
    font-family: sans-serif;
}

body{
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    min-height: 100vh;
    justify-content: center;
    background-color: rgb(242, 242, 242);
}

.initial-screen{
    width: 54%;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: start;
}

.insta-phone{
    width: 50%;
    display: flex;
    justify-content: center;
    align-content: center;
}

.insta-phone img{
    height: 760px;
}

.insta-login{
    width: 50%;
    display: flex;
    min-height: 34rem;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
}

.group{
    width: 90%;
    display: flex;
    padding: 1.3rem 0;
    margin-bottom: 10px;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(207, 207, 207);
}

.insta-logo{
    height: 50px;
    margin-top: 15px;
    margin-bottom: 20px;
}

.group:nth-child(1){
    min-height: 19rem;
}

.group input{
    height: 35px;
    width: 267px;
    padding: 9px;
    font-size: 11px;
    margin-bottom: 5px;
    border-radius: 2px;
    background-color: rgb(244, 244, 244);
    border: 1px solid rgb(211, 211, 211);
}

input:-ms-input-placeholder  {
    font-size:11px;
}

input::-webkit-input-placeholder {
    font-size:11px;
}

button{
    height: 30px;
    width: 267px;
    border: none;
    color: white;
    font-size: 13px;
    cursor: pointer;
    font-weight: 700;
    border-radius: 3px;
    background-color: rgb(0, 153, 255);
}

.or{
    font-size: 12px;
    font-weight: 700;
    color: rgb(121, 121, 121);
}

.link-facebook{
    margin-top: 15px;
    margin-bottom: 20px;

}

.link-facebook img{
    height: 13px;
    margin-top: 10px;
}

.link-senha{
    font-size: 11px;
}

.group2{
    width: 90%;
    height: 65px;
    display: flex;
    padding: 1.6rem 0;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(207, 207, 207);
}

.group2 span{
    font-weight: 700;
    color: rgb(0, 153, 255);
}

p{
    color: rgb(48, 48, 48)
}

.get-on{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:center;
    width: 100%;
    padding: 1.3rem 0;
}

.get-app{
    padding-bottom: 20px;
}

.get-on img{
    height: 40px;
    background-size: cover;
}

/* media queries */

@media(min-width: 1040px) and (max-width: 1300px){
    .initial-screen{
        width: 80%;
    }
    .group, .group2{
        width: 90%;
    }
}

@media(min-width: 875px) and (max-width: 1300px){
    .initial-screen{
        width: 80%;
    }
    .group, .group2{
        width: 90%;
    }
}


@media(max-width: 875px){
    body{
        background-color: rgb(241, 241, 241);
    }
    .initial-screen{
        width: 90%
    }
    .insta-phone{
        display: none;
    }

    .insta-login{
        width: 100%;
    }

    .group, .group2{
        background-color: rgb(241, 241, 241);
        border: 1px solid transparent;
    }
}