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

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

.instagram-wraper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 935px;
    width: 60%;
    height: 100vh;
}

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

.instagram-phone img {
    height: 35rem;
}

.instagram-form {
    display: flex;
    align-items: center;
    /* horizontal */
    justify-content: space-around;
    /* vertica */
    flex-direction: column;
    width: 50%;
    max-width: 350px;
    min-height: 34rem;
}

.group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    background-color: #ffffff;
    width: 100%;
    padding: 1.3rem 0;
    border: 1px solid lightgrey;
}

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

.instagram-logo {
    height: 5rem;
}

.form {
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.form-login {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 70%;
}

.input-form {
    margin-bottom: 8px;
    border: 1px solid lightgray;
    background-color: rgba(250, 250, 250, 1);
    width: 100%;
    border-radius: 3px;
    padding: 10px;
    line-height: 18px;
}

.button-form {
    margin-top: 5px;
    min-height: 2rem;
    border: 1px solid lightgrey;
    border-radius: 5px;
    background-color: rgba(0, 149, 246, .3);
    color: #ffffff;
    width: 100%;
    transition: 0.5s;
}

.texto {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2rem;
    width: 100%;
}

.texto-block {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 70%;
}

.line {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 0.1px;
    background-color: lightgrey;
}

.texto-ou {
    color: rgba(142, 142, 142, 1);
    margin: 0 18px;
    font-size: 13px;
    font-weight: 600;
}

.links {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.facebook-block {
    display: flex;
    align-items: center;
    justify-content: center;
}

.facebook {
    height: 2rem;
}

.facebook-link {
    text-decoration: none;
    color: darkblue;
}

.forget {
    margin-top: 15px;
    font-size: 11px;
    color: black;
    font-weight: 300;
    text-decoration: none;
}

.cadastrar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 1rem;
    height: 5rem;
}

.link-cadastrar {
    text-decoration: none;
    transition: 0.5s;
    font-weight: 600;
    color: #0095f2;
}

.group-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 1rem 0;
}

.get-app {
    padding-bottom: 2rem;
}

.group-buttons img {
    height: 40px;
}


/* New Page */

.profile-photo {
    width: 10rem;
    height: 100%;
    max-width: 100%;
    border-radius: 50%;
}

.continue-button {
    font-size: 15px;
    color: #ffffff;
    background-color: rgb(70, 172, 255);
    border: 1px lightgrey solid;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.5s;
}

.not-right-account {
    margin-top: 15px;
    font-size: 15px;
}

.change-account {
    color: #0095f2;
    text-decoration: none;
    font-weight: 600;
    transition: 0.5s;
}

.dowload img {
    transition: 0.5s;
}


/* hover */

.button-form:hover {
    cursor: pointer;
    background-color: #0095f2;
}

.facebook-link:hover {
    color: #0000e9;
}

.forget:hover {
    color: lightgrey;
}

.link-cadastrar:hover {
    color: darkblue;
}

.dowload img:hover {
    height: 45px;
    cursor: pointer;
    box-shadow: 2px 2px 5px 2px rgb(160, 160, 160);
}

.continue-button:hover {
    cursor: pointer;
    background-color: #0095f2;
}

.change-account:hover {
    color: darkblue;
}


/* media */

@media (max-width: 1124px) {
    .instagram-wraper {
        width: 100%;
    }
}

@media (max-width: 650px) {
    body {
        background-color: #ffffff;
    }
    .group {
        border-style: none;
    }
    .instagram-wraper {
        width: 90%;
    }
    .instagram-phone {
        display: none;
    }
    .instagram-form {
        width: 100%;
    }
}

@media (max-width: 340px) {
    .dowload {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
}