*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body
{
    width: 100%;
    height: 100%;
}
body
{
    background: #000;
    color: #fff;
    font-family: "Libre Baskerville", serif;
}
.account-page
{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 102px 32px 82px;
}
.account-card
{
    width: 100%;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 48px;
    border: 1px solid #333;
    border-radius: 16px;
    background: #111;
}
.account-logo
{
    width: min(220px, 70%);
    height: auto;
}
.account-card h1
{
    font-family: "Cinzel", serif;
    font-size: 2rem;
    text-align: center;
}
.account-subtitle
{
    text-align: center;
    line-height: 1.6;
}
form
{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.form-group
{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label
{
    font-weight: bold;
}
.form-group input
{
    padding: 14px 16px;
    background: #000;
    color: #fff;
    border: 1px solid #444;
    border-radius: 8px;
    font: inherit;
}
.form-group input:focus
{
    outline: none;
    border-color: #305cde;
}
.form-options
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.checkbox
{
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
}
.form-options a,
.account-register a,
.back-link
{
    color: #66f6ff;
    text-decoration: none;
}
.form-options a:hover,
.account-register a:hover,
.back-link:hover
{
    text-decoration: underline;
}
button[type="submit"]
{
    padding: 14px;
    background: #305cde;
    color: #fff;
    border: 1px solid #2323ff;
    border-radius: 8px;
    font-family: "Cinzel", serif;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color .2s, transform .2s;
}
button[type="submit"]:hover
{
    background: #66f6ff;
    color: #0b1f3a;
    transform: translateY(-2px);
}
button[type="submit"]:active
{
    transform: translateY(0);
}
.account-footer
{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #111;
    border-top: 1px solid #333;
    font-size: .9rem;
}
@media (max-width: 600px)
{
    .account-card
    {
        padding: 32px 24px;
    }
    .form-options
    {
        flex-direction: column;
        align-items: flex-start;
    }
}
.account-header
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    background: #111;
    border-bottom: 1px solid #333;
    z-index: 1000;
}
.back-link
{
    color: #66f6ff;
    text-decoration: none;
    font-family: "Cinzel", serif;
}
.back-link:hover
{
    text-decoration: underline;
}
.account-register
{
    text-align: center;
    line-height: 1.6;
}
.form-message
{
    min-height: 1.5rem;
    text-align: center;
    font-size: .95rem;
    color: #66f6ff;
}