body {
    overflow: hidden;
    background-color: rgb(255, 255, 255);

}

/*edição sessão login*/
.login-section {
    display: flex;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;

    & .login-content {
        padding: 2vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 30em;

        & .login-form-container {
            display: flex;
            width: auto;
            height: auto;
            justify-content: space-around;
            align-items: center;
            flex-direction: column;
            border: 1px solid;
            border-radius: 1rem;
            padding: 1rem;
            box-shadow: 0px 0px 20px 10px rgb(0 0 0 / 20%);
            background: rgb(0, 0, 0);

            & .image-logo {
                display: flex;
                justify-content: center;

                & img {
                    width: 50%;
                    height: max-content;
                }
            }

            & .login-title {
                color: white;
                font-size: 1.5rem;
                font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
            }

            & #login-form {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                width: 90%;

                & .form-group {
                    display: flex;
                    flex-direction: column;
                    justify-content: space-around;
                    width: 100%;
                    margin: 1vw;
                    gap: 1rem;

                    & label {
                        color: white;
                    }

                    & input {
                        border-radius: 1rem;
                        padding: 1rem;

                        &:focus {
                            color: hsla(217 100% 56% / 1);
                            outline-color: hsla(217 100% 56% / 1);
                            box-shadow: 0px 0px 20px rgba(71, 184, 255, 0.5),
                                0px 5px 5px -1px rgba(58, 125, 233, 0.25),
                                inset 4px 4px 8px rgba(175, 230, 255, 0.5),
                                inset -4px -4px 8px rgba(19, 95, 216, 0.35);
                            transition: .1s;
                            transition-property: box-shadow;
                        }
                    }

                    & .forgot-password-link {
                        color: hsla(194 100% 69% / 1);
                    }
                }

                & .form-options {
                    & label {
                        color: white
                    }
                }

                & .form-actions {
                    display: flex;
                    margin: 1vw;
                    width: 100%;
                    justify-content: center;

                    & .btn-submit {
                        --clr-font-main: hsla(0 0% 20% / 100);
                        --btn-bg-1: hsla(194 100% 69% / 1);
                        --btn-bg-2: hsla(217 100% 56% / 1);
                        --btn-bg-color: hsla(360 100% 100% / 1);
                        --radii: 0.5em;
                        cursor: pointer;
                        padding: 0.9em 1.4em;
                        min-width: 120px;
                        min-height: 44px;
                        font-size: var(--size, 1rem);
                        font-weight: 500;
                        transition: 0.8s;
                        background-size: 280% auto;
                        background-image: linear-gradient(325deg,
                                var(--btn-bg-2) 0%,
                                var(--btn-bg-1) 55%,
                                var(--btn-bg-2) 90%);
                        border: none;
                        border-radius: var(--radii);
                        color: var(--btn-bg-color);
                        box-shadow:
                            0px 0px 20px rgba(71, 184, 255, 0.5),
                            0px 5px 5px -1px rgba(58, 125, 233, 0.25),
                            inset 4px 4px 8px rgba(175, 230, 255, 0.5),
                            inset -4px -4px 8px rgba(19, 95, 216, 0.35);

                        &:hover {
                            background-position: right top;
                        }

                        &:is(:focus, :focus-visible, :active) {
                            outline: none;
                            box-shadow:
                                0 0 0 3px var(--btn-bg-color),
                                0 0 0 6px var(--btn-bg-2);
                        }

                        @media (prefers-reduced-motion: reduce) {
                            #btn-submit {
                                transition: linear;
                            }
                        }

                    }
                }
            }

            & .login-message {
                margin-block: auto;
                color: white;
            }

            & .login-info {
                display: flex;
                width: 100%;
                justify-content: center;
                align-items: center;
                gap: 1rem;

                & p {
                    color: rgb(254, 254, 254);
                }

                & span {
                    color: hsla(194 100% 69% / 1);
                    cursor: pointer;
                }

            }
        }

    }

}

.signup-section {
    display: none;
    /*width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;*/
}

.reset-section {
    display: none;
    height: 100vh;

    & .reset-form-container {
        display: flex;
        width: 24rem;
        height: auto;
        justify-content: space-around;
        align-items: center;
        flex-direction: column;
        border: 1px solid;
        border-radius: 1rem;
        padding: 1rem;
        box-shadow: 0px 0px 20px 10px rgb(0 0 0 / 20%);
        background: rgb(0, 0, 0);

        & .image-logo {
            display: flex;
            justify-content: center;

            & img {
                width: 50%;
                height: max-content;
            }
        }

        & .reset-header {
            & h1 {
                color: white;
            }
        }

        & #reset-form {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 90%;

            & .form-group {
                display: flex;
                flex-direction: column;
                justify-content: space-around;
                width: 100%;
                margin: 1vw;
                gap: 1rem;


                & label {
                    color: white;
                }

                & input {
                    border-radius: 1rem;
                    padding: 1rem;

                    &:focus {
                        color: hsla(217 100% 56% / 1);
                        outline-color: hsla(217 100% 56% / 1);
                        box-shadow: 0px 0px 20px rgba(71, 184, 255, 0.5),
                            0px 5px 5px -1px rgba(58, 125, 233, 0.25),
                            inset 4px 4px 8px rgba(175, 230, 255, 0.5),
                            inset -4px -4px 8px rgba(19, 95, 216, 0.35);
                        transition: .1s;
                        transition-property: box-shadow;

                    }
                }
            }

            & .form-actions {
                display: flex;
                margin: 1vw;
                width: 100%;
                justify-content: center;

                & .btn-submit {
                    --clr-font-main: hsla(0 0% 20% / 100);
                    --btn-bg-1: hsla(194 100% 69% / 1);
                    --btn-bg-2: hsla(217 100% 56% / 1);
                    --btn-bg-color: hsla(360 100% 100% / 1);
                    --radii: 0.5em;
                    cursor: pointer;
                    padding: 0.9em 1.4em;
                    min-width: 120px;
                    min-height: 44px;
                    font-size: var(--size, 1rem);
                    font-weight: 500;
                    transition: 0.8s;
                    background-size: 280% auto;
                    background-image: linear-gradient(325deg,
                            var(--btn-bg-2) 0%,
                            var(--btn-bg-1) 55%,
                            var(--btn-bg-2) 90%);
                    border: none;
                    border-radius: var(--radii);
                    color: var(--btn-bg-color);
                    box-shadow:
                        0px 0px 20px rgba(71, 184, 255, 0.5),
                        0px 5px 5px -1px rgba(58, 125, 233, 0.25),
                        inset 4px 4px 8px rgba(175, 230, 255, 0.5),
                        inset -4px -4px 8px rgba(19, 95, 216, 0.35);

                    &:hover {
                        background-position: right top;
                    }

                    &:is(:focus, :focus-visible, :active) {
                        outline: none;
                        box-shadow:
                            0 0 0 3px var(--btn-bg-color),
                            0 0 0 6px var(--btn-bg-2);
                    }

                    @media (prefers-reduced-motion: reduce) {
                        #btn-submit {
                            transition: linear;
                        }
                    }

                }
            }
        }
    }
}