#content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preload * {
    transition: none !important;
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
}

.login, .create{
    max-width: 300px;
    width: 60%;
    margin: 100px 10px 10px 10px;
    padding: 60px min(15vw, 60px) 40px min(15vw, 60px);
    border-radius: 5px;
    background: var(--header-color-l);
    background: radial-gradient(var(--header-color-r), var(--header-color-l));
    box-shadow: 2.5px 2.5px 10px rgba(0, 0, 0, 0.25);
}

.create {
    margin-top: 25px;
}

h2 {
    width: 100%;
    text-align: center;
    font-size: 2rem;
    color: #fff !important;
}

p {
    width: 100%;
    color: #AAA !important;
    text-align: center;
}

.login > p {
    margin-top: 5px;
    margin-bottom: 15px;
}

a {
    text-decoration: none !important;
}

a > span {
    font-family: sans-serif;
    color: #fff;
    font-size: 0.8rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

a:hover > span {
    color: #EEE
}

form > label {
    color: #fff !important;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

form > input[type=text],
form > input[type=password] {
    font-size: 1rem;
    width: calc(100% - 8px) !important;
    height: 30px            !important;
    border: none            !important;
    border-radius: 3px      !important;
    padding-left: 8px       !important;
    margin-top: 5px         !important;
    background-color: var(--card-color) !important;
    margin-left: 0          !important;
}

.login #username,
.login #first-password {
    margin-bottom: 25px;
}

.login #password, 
.login #confirm-password {
    margin-bottom: 35px;
}

.log {
    font-stretch: semi-condensed;
    width: 100%;
    height: 2rem;
    border: none;
    border-radius: 3px;
    background-color: var(--accent-color);
    color: #fff;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.5s ease;
}

#log:hover {
    background-color: rgb(200, 86, 49);
    color: rgb(220, 220, 220);
}

.error-message {
    font-size: 1rem;
    height: 1rem;
    color: hsl(0 65% 60% / 1);
    /* color: rgb(181, 48, 48); */
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
    text-align: center;
}

/******************************************************************************/

.create {
    --text-color-side: #bbb;
}

.create h2 {
    font-size: 2rem;
    width: 100%;
    font-weight: 500;
    text-align: center;
    color: #fff;
    margin-bottom: 5px !important;
}

.note {
    font-size: 0.8rem;
    color: var(--text-color-side);
    padding-bottom: 10px;
    width: 100%;
    text-align: justify;
}

.side-note {
    font-size: 12px;
    color: var(--text-color-side);
    margin-left: 7.5px;
}

.create input {
    margin-bottom: 20px;
}

.create hr {
    height: 1px;
    background-color: var(--text-color-side);
    border: none;
    margin: 0;
    margin-top: 10px;
    margin-bottom: 25px;
}

.complete {
    background-color: var(--text-color-side);
    color: white;
    cursor: default;
}

/******************************************************************************/