.content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content > .card  {
    margin: 0px auto; 
    width: 100vmin; 
    max-width: 645px;
    background:rgba(255,255,255,.75);
    padding: 25px;
}

h2{
    margin: 20px 0px;
}

.alert{
    padding: 10px;
    margin: unset;
    font-size: 1.1rem;
    margin-bottom: 0.5em;
    min-height: unset;
}

span[name=contactUs] {
    text-decoration: underline;
    cursor: pointer;
}

a{
    opacity: 0.7;
    font-size: clamp(1em, 1vw, 2em);
    transition: opacity 200ms linear;
}
a:hover{
    opacity: 1;
}

div.passwordRequirements{
    display: flex;
    margin: 0 0 10px 0;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

div.passwordRequirements > div{ 
    display: flex;
    flex: 0 0 fit-content;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    padding: 5px;
    color: black;
}

div.passwordRequirements > div > label{ 
    display: block;
    opacity: 0.8;
    font-size: 80%;
}
div.passwordRequirements > div  > div{ 
    display: flex;
}


@media screen and (max-width: 700px) {
    #userLogin_Content {
        padding: 2em;
    }
}

.loginAlert{
    color: red;
    font-size: 0.875rem;
    line-height: 1.25rem; 
}

.loginAlert::before{
    content: "\26A0";
    color: red;
    font-size: 1.4em;
    margin-right: 0.2em;
    padding-top: 0.5em;
}

#createForm > div[role="input-group"] {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    row-gap: 1em; 
    gap: 1em;
}

#createForm > div[role="input-group"] > dux-input {
    flex: 1 1;
}

