* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    min-width: 100%;
    min-height: 100vh;
    display: flex;
    background: #132030;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    flex-direction: column;
}


.main-login {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

    & .wrapper {
        width: 60%;
        display: flex;

        & .info {
            width: 50%;
            display: flex;
            border: 1px solid #2F3339;
            padding: 1rem;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            border-top-left-radius: 2rem;
            border-bottom-left-radius: 2rem;

            & a {
                width: 100%;

                & img {
                    max-width: 80%;
                    height: auto;
                }

            }
        }

        & .login-form {
            width: 50%;
            display: flex;
            flex-direction: column;
            padding: 1rem;
            border: 1px solid #2F3339;
            justify-content: center;
            align-items: center;
            border-top-right-radius: 2rem;
            border-bottom-right-radius: 2rem;

            & input {
                outline: none;
                border: none;
                border-bottom: 1px solid #2F3339;
                color: white;
                background: none;
                width: 60%;
                margin: 1rem 0;
                padding: .2rem;
                text-align: center;
            }

            & button {
                margin-top: 2rem;
            }
        }
    }
}

footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: #1a2b41;
    border-top: 1px solid #2F3339;

    & a {
        color: white;
    }

    & .legal {
        display: flex;
        flex-direction: column;
    }
}


@media screen and (max-width: 900px) {
    .main-login {
        padding: 5rem 0;

        .wrapper {
            flex-direction: column;
            width: 60%;

            & .info {
                width: 100%;
                border-radius: 0;
                border-top-right-radius: 2rem;
                border-top-left-radius: 2rem;

                & a {
                    width: 50%;
                }
            }

            & .login-form {
                width: 100%;
                border-radius: 0;
                border-bottom-left-radius: 2rem;
                border-bottom-right-radius: 2rem;
                padding: 5rem 0;
            }
        }
    }

    & footer {
        flex-direction: column;
        align-items: center;

        & .legal {
            text-align: center;
            margin-bottom: 2rem;
        }
    }
}