html {
    --main-color: #0AE872;

    font-family: "Roboto", sans-serif;
    font-size: 14px;
}

body {
    display: grid;
    grid-template-columns: 720px 1fr;
    margin: 0;
    min-height: 100vh;
}

main {
    display: grid;
    grid-template-rows: auto 1fr;

    > header {
        margin: 25px 48px;
    }
}

aside {
    background:
        left / auto 100% no-repeat url(aside.png),
        left / auto 100% repeat-x url(aside-c.png);
}

#main {
    display: grid;
    gap: 48px;
    place-self: center;
    width: 450px;

    > header {
        text-align: center;

        > h1 {
            font-size: 32px;
            font-weight: 600;
        }

        > p {
            color: #747474;
            font-weight: 400;
        }
    }

    > footer {
        color: #747474;
        text-align: center;
    }
}

input[type="email"],
input[type="password"],
input[type="text"] {
    background-color: #F0F0F0;
    border: none;
    border-radius: 62px;
    padding: 12px 16px;
}

button {
    border: none;
    border-radius: 62px;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 18px;

    &.primary {
        background-color: var(--main-color);
        color: white;
    }

    &.secondary {
        background-color: white;
        border: thin solid #EDEBE9;
    }
}

.or {
    color: #747474;
    justify-self: center;
}

#options {
    display: grid;
    gap: 16px;
}

form#username-password {
    display: contents;
}

a#register,
a#login {
    color: var(--main-color);
    font-weight: 500;
    text-decoration: none;
}
