.content {
    display: flex;
    flex-direction: column;
    background-color: white;
}

form {
    display: flex;
    flex-direction: column;
    transition: opacity 0.25s linear;
}

fieldset {
    display: flex;
    flex-direction: column;
}

article div, section {
    display: flex;
    flex-direction: column;
}

.downloads {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.downloads a {
    opacity: 1;
    transition: opacity 0.1s linear;
}

.downloads a:hover,
.downloads a:focus-visible {
    opacity: 0.5;
}

.downloads img {
    height: 7rem;
    width: auto;
    margin: 2rem;
}

form button {
    background-color: #AA915A;
    appearance: none;
    border: none;
    outline: none;
    width: fit-content;
    padding: 1rem 4rem;
    border: 0.2rem solid #AA915A;
    font-size: 1.75rem;
    color: white;
    letter-spacing: 1px;
    margin: 0rem auto;
    transition: background-color 0.1s linear, color 0.1s linear, transform 0.1s linear
}

form button:hover,
form button:focus-visible {
    background-color: transparent;
    color: #AA915A;
    transform: scale(1.05);
}

form label {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    font-size: 2rem;
    font-weight: 400;
}

form input {
    display: flex;
    flex-grow: 1;
    background-color: transparent;
    border: none;
    outline: none;
    border-bottom: 0.25rem solid rgba(0,0,0, 0.3);
    transition: border 0.1s linear;
    cursor: text;
    font-weight: 600;
    margin: 0.25rem 0.75rem;
}

form input:hover,
form input:focus-visible {
    border-bottom: 0.25rem solid #aa915a;
}

.fa-rotate {
    opacity: 0;
    pointer-events: none;
    font-size: 5rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transition: opacity 0.25s linear;
    animation: loading-rotate 1s ease-in-out 0s infinite forwards;
}

@keyframes loading-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.loading form {
    opacity: 0.5;
}

.loading i {
    opacity: 1;
}

#message {
    font-style: italic;
    text-align: center;
    margin: 1rem auto;
    padding: 0rem;
}

#message .success {
    color: #00a400;
}

#message .error {
    color: #d10000;
}