body {
    margin: 0;
    background-color: #e4d3ad;
    background-image:
        radial-gradient(circle at 10% 5%, rgba(255, 255, 240, 0.45), transparent 60%),
        radial-gradient(circle at 90% 95%, rgba(150, 110, 60, 0.35), transparent 75%),
        radial-gradient(ellipse at center, rgba(0, 0, 0, 0.08), transparent 70%),
        url("https://www.transparenttextures.com/patterns/aged-paper.png"),
        linear-gradient(180deg, #e9d8b5 0%, #e2cfa2 45%, #d3b98b 100%);
    background-blend-mode: multiply, screen, normal, normal, normal;
    background-size: cover, cover, cover, 500px 500px, cover;
    background-attachment: fixed;
    color: #1b1b1b;
    font-family: "Georgia", "Times New Roman", serif;
}

.card {
    max-width: 600px;
    width: 100%;
    padding: 2rem 2.5rem;
    border-radius: 16px;
    border: 2px solid #5a3b1a;
    background: rgba(248, 238, 210, 0.95);
    box-shadow:
        0 0 0 3px rgba(66, 40, 16, 0.25),
        0 12px 25px rgba(0,0,0,0.4);
    position: relative;
}

.card::before,
.card::after {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(90, 59, 26, 0.35);
    pointer-events: none;
}

.card-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    color: #5a2a2a;
    margin-bottom: 0.25rem;
}

.card-subtitle {
    text-align: center;
    font-style: italic;
    color: #7a5a3a;
    margin-bottom: 1.5rem;
}

.card-message-box {
    background: rgba(255, 252, 240, 0.95);
    border-radius: 10px;
    border: 1px solid rgba(90, 59, 26, 0.3);
    padding: 0.85rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.98rem;
}

.card-message-label {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    color: #8a5a2a;
    margin-bottom: 0.25rem;
}

.card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.btn-dnd-primary {
    color: #fff;
    background-color: rgb(26, 56, 45);
    border: 2px solid rgb(163, 136, 77);
    border-radius: 999px;
    padding: 0.55rem 1.4rem;
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.btn-dnd-primary:hover {
    background-color: rgb(31, 68, 55);
}

.btn-dnd-secondary {
    color: #5a3b1a;
    background-color: transparent;
    border: 1px dashed rgba(90, 59, 26, 0.7);
    border-radius: 999px;
    padding: 0.5rem 1.25rem;
    cursor: pointer;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.btn-dnd-secondary:hover {
    background-color: rgba(90, 59, 26, 0.05);
}

.small-hint {
    margin-bottom: 1rem;
    text-align: center;
    font-size: 0.78rem;
    color: #8a6b3a;
}

.password-toggle {
  position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);

    width: 22px;
    height: 22px;

    background: url("../personal_icons/eye.svg") no-repeat center;
    background-size: contain;

    border: none;
    padding: 0;
    cursor: pointer;
    background-color: transparent;
}

.password-wrap {
    position: relative;
}

.password-wrap .form-control {
    padding-right: 44px; 
}