/* Forms Index Page Styles */
.forms-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.forms-hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.forms-hero p {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto;
}

/* Form Card */
.form-card {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 2.25rem;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.03), 0 2px 4px -2px rgba(0,0,0,0.02);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
}

.form-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.05);
    border-color: #cbd5e1;
}

.form-icon-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.form-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.form-card p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
    flex-grow: 1;
}

.form-btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    align-self: flex-start;
}

.form-btn i {
    font-size: 0.9rem;
    transition: transform 0.2s ease;
}

.form-card:hover .form-btn i {
    transform: translateX(4px);
}
