body {
    margin: 0;
    padding: 0;
    height: 500px;
    font-family: 'DM Sans', system-ui, sans-serif;
    background: #F5F1E8;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
.pict-img {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}
.login-overlay {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: linear-gradient(
        to right,
        rgba(30,58,44,0.88) 0%,
        rgba(30,58,44,0.58) 50%,
        rgba(30,58,44,0.18) 100%
    );
}
.login {
    margin: 0;
    position: relative;
    width: 100%;
    max-width: 380px;
    height: auto;
    justify-self: center;
    border: solid 2px #D97B3D;
    background-color: #2F5D50;
    color: white;
    border-radius: 15px;
    padding: 2.5rem 2rem 2rem;
    box-shadow: 0 20px 60px rgba(47,93,80,0.25);
}

.login h1 {
    justify-self: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.8rem;
    color: white;
}

/* brand at top of login box */
.login-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.login-logo {
    width: 40px;
    height: 40px;
    background: #D97B3D;
    color: white;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.login-site {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    margin: 0;
    line-height: 1.1;
}

.login-sub {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
}

.username {
    margin-bottom: 1.2rem;
}

.username h5 {
    margin: 0 0 0.4rem 0;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.usernamee {
    margin: 0;
    border: solid 1px rgba(255,255,255,0.25);
    padding: 0.65rem 0.9rem;
    width: 100%;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.95rem;
    transition: border 0.3s ease, background 0.3s ease;
    box-sizing: border-box;
}

.usernamee::placeholder {
    color: rgba(255,255,255,0.35);
}

.usernamee:focus {
    outline: none;
    border-color: #D97B3D;
    background: rgba(255,255,255,0.15);
}

.login-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 0.75rem;
    background: #D97B3D;
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.login-btn:hover {
    background: #c4692d;
}