body {
    font-family: "Arial", serif;
    background: ghostwhite;
    height: 100%;
    width: 100%;
    font-size: 5rem;
    padding: 0;
    margin: 0;
}

#header {
    background: white;
    padding: 1rem;
    width: auto;
    display: flex;
    justify-content: right;
    box-shadow: rgba(0, 0, 0, 0.34) 0 .5rem .5rem;
}

button {
    font-size: 4rem;
    background: white;
    border: none;
    border-radius: 1rem;
    padding: 1rem;
    transition: 0.1s;

}

button:hover {
    background: cornflowerblue;
    color: white;
    animation: pulse 1s infinite;
    box-shadow: rgba(0, 0, 0, 0.34) 0.5rem 0.5rem 0.5rem;
}

button:active {
    background: cornflowerblue;
    color: white;
    box-shadow: none;
    transform: scale(0.95);
}

#formCard {
    border: black 5px solid;
    background: white;
    border-radius: 3rem;
    box-shadow: rgba(0, 0, 0, 0.34) 0.5rem 0.5rem 0.5rem;
    position: fixed;
    inset: 0;
    width: 50rem;
    height: 25rem;
    margin: auto;
    justify-content: center;
}

#openForm {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    text-align: center;

    div {
        margin-left: auto;
        margin-right: auto;
        height: 7.5rem;
        width: 35rem;
    }


    #buttonContainer {
        min-width: 35rem;
    }

    #passwordContainer {
        margin-bottom: 2rem;
        border: none;
    }

    input {
        width: 100%;
        height: 100%;
        padding: 1rem;
        font-size: 4rem;

        border: black 5px solid;
        border-radius: 1rem;
    }

    button {
        height: 100%;
        width: 100%;

        border: black 5px solid;
        border-radius: 1rem;
    }

}

input {
    font-size: 4rem;
}


#errorContainer {
    display: flex;
    padding: 1rem;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    #error {
        font-size: 3rem;
        color: #df045b;
    }
}

#successContainer {
    display: flex;
    padding: 1rem;
    justify-content: center;
    align-items: center;
    visibility: hidden;

    #success {
        font-size: 3rem;
        color: cornflowerblue;
    }
}
