body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.flexMain{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #212121;
    padding: 50px 0;
    border-radius: 20px;
    width: 35%;
}

.loginButton{
    padding: 20px 60px;
    width: 50%;
    border-radius: 20px;
    background-color: #5865F2;
    color: white;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loginButton img{
    width: auto;
    height: 1em;
}
.loginButton:hover{
    background-color: #6f7af3;
}

.loginButton span{
    margin-left: 10px;
    font-size: 1em;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo{
    width: 30vmax;
}



@media (max-width: 1000px) {
    .flexMain{
        width: 70%;
    }
}