/* Custom card styles */
.card-modern {
    background: rgba(20, 20, 20, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

    .card-modern:hover {
        transform: translateY(-5px);
        border-color: rgba(212, 175, 55, 0.3);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

/* Button styles */
.btn-ink {
    background: linear-gradient(90deg, var(--primary-red), var(--primary-gold));
    color: white;
    border: none;
    padding: 0.7rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-ink:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(196, 30, 58, 0.4);
        color: white;
    }

/* Section spacing */
.section-spacing {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

@media (max-width: 768px) {
    .section-spacing {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}
.reset-container {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.reset-card {
    width: 100%;
    max-width: 450px;
    background: #1c1c1c;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,.4);
}

    .reset-card h2 {
        text-align: center;
        color: #fff;
        margin-bottom: 25px;
        font-weight: 700;
    }

.form-group {
    margin-bottom: 18px;
}

    .form-group label {
        color: #ccc;
        display: block;
        margin-bottom: 8px;
    }

.form-control {
    width: 100%;
    background: #2a2a2a;
    border: 1px solid #444;
    color: white;
    padding: 12px 15px;
    border-radius: 10px;
    transition: .3s;
}

    .form-control:focus {
        outline: none;
        border-color: #ff6b35;
        box-shadow: 0 0 10px rgba(255,107,53,.4);
    }

.btn-main {
    width: 100%;
    border: none;
    background: #ff6b35;
    color: white;
    padding: 14px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
    cursor: pointer;
}

    .btn-main:hover {
        background: #ff7f50;
        transform: translateY(-2px);
    }

.text-danger {
    color: #ff4d4d;
    margin-bottom: 15px;
}