body {
    margin: 0;
    width: auto;
}

.header {
    background-color: #21c08B;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__img {
    width: 50%;
    margin: auto;
    display: block;
}

.login {
    background: linear-gradient(#21c08B, #AB88FF);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0px, 30px;
    min-height: cal(100vh - 200px);
}

.login__container {
    background-color: rgba(255,255,255,0.1);
    border: 2px solid white;
    border-radius: 40px;
    color: white;
    padding: 60px 68px 40px;
    min-height: 700px;
    width: 300px;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
}

.login__container--form {
    display: flex;
    flex-direction: column;
}

    .login__container--form label {
        font-size: 14px;
    }

.login__container--remember-me {
    color: white;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.login_container--remember-me a {
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
}

    .login_container--remember-me a:hover {
        text-decoration: underline;
    }

.login__container--social-media > div {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 10px;
}

    .login__container--social-media > div > img {
        width: 40px;
        margin-right: 10px;
    }

.login__contianer--register {
    font-size: 14px;
}

    .login__contianer--register a {
        font-size: 16px;
        font-weight: bold;
        color: white;
        text-decoration: none;
    }

        .login__contianer--register a:hover {
            text-decoration: underline;
        }

.input {
    background-color: transparent;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-bottom: 2px solid white;
    font-family: 'Muli', sans-serif;
    font-size: 16px;
    margin-bottom: 20px;
    padding: 0px 20px;
    outline: none;
    color: white;
    height: 50px;
}

::placeholder {
    color: white;
}

.button {
    color: white;
    border-radius: 50px;
    background-color: rgba(255,255,255,0.3);
    height: 50px;
    outline: none;
    font-family: 'Muli', sans-serif;
    font-size: 16px;
    border: 2px solid white;
    cursor: pointer;
    font-weight: bold;
    margin: 10px 0px;
}

.footer {
    display: flex;
    align-items: center;
    height: 100px;
    width: 100%;
    background-color: #AB88FF;
}

    .footer a {
        color: white;
        display: flex;
        cursor: pointer;
        font-size: 14px;
        text-decoration: none;
        padding-left: 30px;
    }

        .footer a:hover {
            text-decoration: underline;
        }





.login__container a {
    font-size: 16px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    text-align: center;
}

    .login__container a:hover {
        text-decoration: underline;
    }

.SocialIcons{
    width: 32px;
}

@media only screen and (max-width: 600px) {

    .login__container {
        background-color: red;
        border: none;
        padding: 0px;
        width: 100%;
    }

    .footer {
        align-items: flex-start;
        flex-direction: column;
    }
}
