@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

* {
    transition: .3s;
    outline: none;
}

html,
body {
    margin: 0;
    background: #000;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #2C2C2C, #181818);
    color: #eee;
    font-family: 'Source Sans 3';
}

#login {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin-top: auto;
    margin-bottom: auto;

    img {
        width: 300px;
    }

    .item {
        display: flex;
        flex-direction: column;
        position: relative;

        label {
            background: linear-gradient(to right, #8B2B51, #E78EB2);
            border-radius: 60px;
            width: max-content;
            padding: 3px 9px;
            position: absolute;
            top: -18px;
            left: 9px;
        }

        input {
            margin-bottom: 24px;
            border-radius: 60px;
            border: 0;
            background: #fff;
            padding: 12px 12px;
            font-family: inherit;
            font-size: 18px;
            font-weight: 800;
            color: #000a;
        }

        button {}
    }

    button {
        background: linear-gradient(to right, #8B2B51, #E78EB2);
        border-radius: 60px;
        border: 0;
        padding: 12px 42px;
        color: #fff;
        font-weight: 800;
        font-size: 18px;
        width: 60%;
    }
}