.form-container {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
}

.hero-section {
    background: linear-gradient(45deg, var(--color-blue-100) 0%, var(--color-blue-200) 100%);
    padding-top: 3rem;
    padding-bottom: 4rem;
    margin-bottom: -4rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--color-blue-100) 0%, transparent 70%);
    opacity: 0.4;
    pointer-events: none;
}

.panel {
    background-color: white;
    border: 1px solid var(--color-slate-200);
    border-radius: 1rem;
}

.panel-header {
    padding: 1.5rem 1.5rem 0;
}

.panel-body {
    padding: 1.5rem;
}

.bank-details {
    background-color: var(--color-slate-50);
    border-radius: 0.75rem;
}

.bank-details-table {
    width: 100%;
    border-spacing: 0;
    border-collapse: separate;
}

.bank-details-table tr td {
    padding: 0.75rem 0;
}

.bank-details-table tr:not(:last-child) td {
    border-bottom: 1px solid var(--color-slate-200);
}

.bank-details-table td:first-child {
    color: var(--color-slate-500);
    width: 30%;
    padding-right: 1rem;
}

.bank-details-table td:last-child {
    color: var(--color-slate-900);
    font-weight: 500;
}
