:root {
    --moeve-primary: #0d0a03;
    --moeve-border: #fff;
    --moeve-bg: #f8f9fa;
    --moeve-input-bg: #fff;
    --moeve-input-border: #bebaae;
    --moeve-input-focus: #666259;
    --footer-bg: #f5f5f5;
    --footer-text: #333;
    --footer-link: var(--moeve-primary);
    --footer-link-hover: var(--moeve-input-focus);
}
html {
    height: max-content;
}
body {
    background-color: var(--moeve-bg);
    color: #333;
    font-family: Arial, sans-serif;
    background-image:url("../img/moeve_bg-egHJxgY.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;

}

.form-label {
    color: var(--moeve-primary);
}

.account-container {
    max-width: 600px;
    width: calc(100% - 2rem);
    margin: 3rem auto;
    padding: 2.5rem;
    background-color: #fff;
    border: 1px solid var(--moeve-border);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.account-logo {
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 12px;
}
.account-logo img {
    max-height: 60px;
    width: auto;
}

.form-heading {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--moeve-primary);
}

.form-label {
    font-weight: 400;
}

.form-control,
.form-select {
    background-color: var(--moeve-input-bg);
    border: 1px solid var(--moeve-input-border);
    border-radius: 4px;
    padding: 0.6rem 0.75rem;
    font-size: 1rem;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--moeve-input-focus);
    box-shadow: 0 0 0 0.2rem rgba(166, 140, 126, 0.25);
    outline: none;
}

.form-control::placeholder {
    color: var(--moeve-input-focus);
}

.mb-3 {
    margin-bottom: 1.5rem !important;
}

.btn-primary.btn {
    background-color: var(--moeve-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 1rem;
    width: 100%;
    transition: background-color 0.2s ease-in-out;
    margin-top: 12px;
}
.btn-primary.btn:hover,
.btn-primary.btn:focus {
    background-color: var(--moeve-input-focus);
    color: #fff;
}

footer.site-footer {
    text-align: center;
    background: var(--footer-bg);
    padding: 12px 16px;
    margin-top: 24px;
    font-size: 0.95rem;
    color: var(--footer-text);
}

footer.site-footer .footer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px; /* statt Pipes */
}

footer.site-footer .footer-nav li a {
    display: inline-block;
    color: var(--footer-link);
    text-decoration: none;
    cursor: pointer;
    padding: .625rem 0;
    line-height: 1.7;
    font-weight: 400;
    transition: color .15s cubic-bezier(.07,.95,0,1); /* wirkt jetzt, da Farbe sich ändert */
    /* optional: für sicherheit alle props */
    transition-property: color, text-decoration-color;
}

footer.site-footer .footer-nav li a:hover,
footer.site-footer .footer-nav li a:focus-visible {
    color: var(--footer-link-hover);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}

.form-links a {
    text-decoration: none!important;
}

/* Für kleine Bildschirme etwas Rand */

@media (max-width: 640px) {

    body {
        background-attachment: fixed;
        background-position: 50% 50%;
    }

}

@media (max-width: 576px) {

    .account-container {
        margin: 2rem 1rem;
        padding: 2rem 1rem;
    }
    
}



    