body {
    height: 100dvh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--fundo-cinza);
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    background-color: var(--branco);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    border-radius: 1rem;

    & .titulo {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        & i {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            background: var(--azul-degrade);
            padding: 1rem;
            color: #fff;
            border-radius: 50%;
            height: 4rem;
            width: 4rem;
        }
    }

    & .form-group {
        display: flex;
        flex-direction: column;
        gap: .5rem;
        width: 100%;

        & label {
            font-weight: bold;
        }

        & .input-group {
            position: relative;
            width: 100%;

            & i {
                position: absolute;
                left: 5%;
                top: 50%;
                transform: translate(-50%, -50%);
                color: #a2a2a2;
            }

            & input {
                padding: .5rem 1rem;
                padding-left: 2rem;
                box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
                border: none;
                border-radius: .5rem;
                width: 100%;
            }
        }
    }

    & .checkbox-group {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: .5rem;
        width: 100%;

        & input {
            vertical-align: middle;
            height: 100%;
            accent-color: #5e60ce;
            cursor: pointer;
        }
    }

    & button[type='submit'] {
        background: var(--azul-degrade);
        padding: .5rem 1rem;
        text-align: center;
        width: 100%;
        border-radius: .5rem;
        color: #fff;
        border: none;
        cursor: pointer;
    }
}

/* Para celulares (largura máxima de 600px) */
@media screen and (max-width: 600px) {
    form {
        background-color: transparent;
        box-shadow: none;
    }
}