#pageContainer {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 80px;
    background-color: #f0f2f5;
}

#deleteAccountBtn {
    margin-top: 20px;
    width: 50%;
    color: white;
    align-self: center;
}

#sectionTitles {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 40%;
    text-align: justify;
    gap: 15px;
}

h1 {
    color: #0d6efd;
    font-size: 4rem;
    text-align: left;
    margin: 0;
}

h2 {
    font-size: 2.2rem;
    text-align: left;
    margin: 0;
}

.registerOrLoginCard {
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 24px;
    height: fit-content;
    width: 50%;
    background-color: #ffffff;
}

.registerOrLoginForm {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 3px;
    text-align: center;
}

.duoInputs {
    display: flex;
    gap: 3%;
}

.shortBtn {
    width: 50%;
    align-self: center;
}

.registerOrLoginForm a {
    color: black;
    text-decoration: none;
    font-size: 0.6rem;
}

.invalid {
    color: rgb(241, 64, 64);
    font-size:x-small;
    font-style: italic;
    align-self: flex-start;
    margin-bottom: 0;
}

/* Responsive */

@media screen and (max-width: 900px) {
    #pageContainer {
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 50px;
    }



    .registerOrLoginCard {
        width: 65%;
    }
}


@media screen and (max-width: 670px) {

    #pageContainer {
        gap: 40px
    }

    #sectionTitles {
        gap: 10px;
    }


    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    h3 {
        font-size: 1rem;
    }


    .registerOrLoginCard {
        width: 80%;
    }
}

@media screen and (max-width: 480px) {
    .registerOrLoginCard {
        width: 90%;
    }

    .duoInputs {
        flex-direction: column;
        gap: 8px;
    }

    .shortBtn {
        width: 100%;

    }
}