/* Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0a9396;
    --secondary: #005f71;
    --accent: #ca6702;
    --success: #12a150;
    --danger: #e60049;
    --warning: #ffc400;
    --light: #f8f9fa;
    --bg: #ffffff;
    --text: #2c3e50;
    --text-secondary: #7f8c8d;
    --border: #ecf0f1;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: #f5f7fa;
    color: var(--text);
    line-height: 1.6;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========== LAYOUT ==========  */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.navbar-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: var(--light);
    border-radius: 8px;
    font-size: 0.95rem;
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

/* ========== BUTTONS ==========  */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--light);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--border);
}

.btn-danger {
    background: var(--danger);
    color: white;
}

.btn-danger:hover {
    background: #c40039;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* ========== FORMS ==========  */
.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text);
    font-size: 0.95rem;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.2s;
    font-family: inherit;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 147, 150, 0.1);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ========== Bank Selector ==========  */
.bank-selector {
    position: relative;
}

.bank-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--bg);
    cursor: pointer;
    transition: all 0.2s;
}

.bank-trigger:hover {
    border-color: var(--primary);
}

.bank-selected {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bank-logo-img {
    height: 24px;
    object-fit: contain;
}

.bank-short-name {
    font-weight: 500;
    color: var(--text);
}

.dropdown-arrow {
    color: var(--text-secondary);
    transition: transform 0.2s;
}

.bank-trigger.active .dropdown-arrow {
    transform: rotate(180deg);
}

.bank-options-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    margin-top: 0.5rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
}

.bank-options-dropdown.show {
    max-height: 400px;
    opacity: 1;
}

.bank-search-box {
    padding: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.bank-search-input {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 0.9rem;
}

.bank-options-list {
    max-height: 300px;
    overflow-y: auto;
}

.bank-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    cursor: pointer;
    transition: background 0.2s;
}

.bank-option:hover {
    background: var(--light);
}

.bank-info-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.bank-full-name {
    font-size: 0.85rem;
    color: var(--text-secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ========== CARDS ==========  */
.card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

/* ========== HERO SECTION ==========  */
.hero {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 6rem 0;
    text-align: center;
    margin-bottom: 3rem;
}


.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== FEATURES ==========  */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}


.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}


.feature-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

.progress-container {
    margin: 2rem 0;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s ease;
    animation: pulse 1s infinite alternate;
}

@keyframes pulse {
    from { opacity: 1; }
    to { opacity: 0.8; }
}

/* ========== STATUS BADGE ==========  */
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.badge-safe {
    background: rgba(18, 161, 80, 0.1);
    color: var(--success);
}

.badge-risk {
    background: rgba(230, 0, 73, 0.1);
    color: var(--danger);
}

.badge-processing {
    background: rgba(202, 103, 2, 0.1);
    color: var(--accent);
}

.badge-pending {
    background: rgba(127, 140, 141, 0.1);
    color: var(--text-secondary);
}

/* ========== ALERT ==========  */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid;
}

.alert-success {
    background: rgba(18, 161, 80, 0.1);
    border-left-color: var(--success);
    color: var(--success);
}

.alert-danger {
    background: rgba(230, 0, 73, 0.1);
    border-left-color: var(--danger);
    color: var(--danger);
}

/* ========== LOADING ==========  */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========== DASHBOARD ==========  */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0.5rem 0;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ========== TABLE ==========  */
.table-responsive {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    background: var(--light);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 1px solid var(--border);
}

td {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}

tr:hover {
    background: var(--light);
}

/* ========== FOOTER ==========  */
.footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 2rem 0;
    margin-top: 4rem;
    color: var(--text-secondary);
    text-align: center;
}

/* ========== RESPONSIVE ==========  */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .navbar-actions {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

/* ========== UTILITY CLASSES ==========  */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.text-center { text-align: center; }
.text-secondary { color: var(--text-secondary); }
.text-muted { opacity: 0.7; }

.hidden { display: none !important; }

/* ========== LANDING PAGE - HOME SPECIFIC ==========  */
.hero {
    background: linear-gradient(135deg, #0a9396 0%, #005f71 50%, #1a5f6b 100%);
    color: white;
    padding: 0;
    margin: 0;
    text-align: left;
    min-height: calc(70vh - 60px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero > .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1.2rem;
    letter-spacing: -1.5px;
    line-height: 1.15;
    animation: slideInLeft 0.8s ease-out;
    color: #ffffff;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 1;
    line-height: 1.7;
    max-width: 550px;
    animation: slideInLeft 0.8s ease-out 0.1s backwards;
    font-weight: 400;
}

.hero-actions {
    animation: slideInLeft 0.8s ease-out 0.2s backwards;
    display: inline-block;
}

.hero-actions .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(10, 147, 150, 0.4);
    transition: all 0.3s ease;
}

.hero-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(10, 147, 150, 0.6);
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.hero-feature {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.hero-feature-icon {
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8rem;
}

.hero-feature-text {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Console Effect */
.console-demo {
    background: #0f172a;
    border-radius: 12px;
    border: 1px solid #334155;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 0 40px rgba(10, 147, 150, 0.1);
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 400px;
    font-family: 'Consolas', 'Courier New', monospace;
}

.console-header {
    background: #1e293b;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #334155;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: #94a3b8;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.console-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.console-dot.red { background: #ef4444; box-shadow: 0 0 5px #ef4444; }
.console-dot.yellow { background: #f59e0b; box-shadow: 0 0 5px #f59e0b; }
.console-dot.green { background: #10b981; box-shadow: 0 0 5px #10b981; }

.console-body {
    flex: 1;
    padding: 1.25rem;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 0.95rem;
    color: #d0d0d0;
    line-height: 1.9;
    overflow-y: auto;
    background: #000;
    position: relative;
    font-weight: 500;
}

.console-body::-webkit-scrollbar { width: 6px; }
.console-body::-webkit-scrollbar-track { background: #000; }
.console-body::-webkit-scrollbar-thumb { background: #334155; border-radius: 3px; }

.console-line {
    margin-bottom: 0.6rem;
    display: flex;
    align-items: flex-start;
    min-height: 1.2em;
}


@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Info Grid */
.info-section {
    padding: 5rem 0;
}

.info-section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }
.info-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    border-color: #0a9396;
}

.info-card h3 {
    color: #0a9396;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-card h3 i {
    font-size: 1.4rem;
    color: #005f71;
}

.info-card p {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
}

.feature-list {
    text-align: left;
    display: inline-block;
    margin: 1rem 0;
}

.feature-list li {
    padding: 0.75rem 0;
    color: rgba(255,255,255,0.9);
    list-style: none;
    font-size: 0.95rem;
}

.feature-list li:before {
    content: "→ ";
    color: rgba(255,255,255,0.6);
    margin-right: 0.75rem;
}

.cta-final {
    background: linear-gradient(135deg, #0a9396 0%, #005f71 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 4rem 0;
}

.cta-final h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.cta-final p {
    margin-bottom: 2rem;
    opacity: 0.95;
    font-size: 1.05rem;
}

/* Statistics Section */
.stats-section {
    background: #0a9396;
    color: white;
    padding: 2rem 0;
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-card {
    padding: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background: #f8f9fa;
    padding: 1.25rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    font-weight: 600;
    color: #333;
}

.faq-question:hover {
    background: #eee;
}

.faq-question i {
    color: #0a9396;
    transition: transform 0.3s;
}

.faq-item.active .faq-question {
    background: #0a9396;
    color: white;
}

.faq-item.active .faq-question i {
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    padding: 1.25rem;
    display: none;
    color: #666;
    line-height: 1.8;
    background: white;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ========== FEATURE ITEMS ==========  */
.feature-item {
    padding: 2rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 2.5rem;
    color: #0a9396;
    margin-bottom: 1rem;
}

.feature-item h4 {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1.1rem;
}

.feature-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-final {
    background: linear-gradient(135deg, #0a9396 0%, #005f71 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 4rem 0;
}

.cta-final h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.cta-final p {
    margin-bottom: 2rem;
    opacity: 0.95;
    font-size: 1.05rem;
}

/* Console Safe Result Styling */
.console-result {
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 1rem;
}

.console-result.safe {
    background: #12a150;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.console-result.safe::before {
    content: '✓ ';
    font-size: 1.3rem;
    margin-right: 0.5rem;
}

/* Counter Animation */
@keyframes countUp {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.counter-value {
    display: inline-block;
    animation: countUp 0.5s ease-out;
}

/* ========== FOOTER ==========  */
.footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 2rem 0;
    margin-top: 4rem;
    color: var(--text-secondary);
    text-align: center;
}

/* ========== ANIMATIONS ==========  */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========== RESPONSIVE DESIGN ==========  */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 0;
    }

    .hero > .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .console-demo {
        height: 300px;
        margin-top: 2rem;
    }

    .console-body {
        font-size: 0.85rem;
    }

    .info-section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    .cta-final h2 {
        font-size: 1.5rem;
    }

    .feature-item,
    .info-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 2rem 0;
        min-height: auto;
    }

    .hero > .container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .console-demo {
        height: 250px;
        width: 100%;
    }

    .console-header {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }

    .console-body {
        padding: 1rem;
        font-size: 0.8rem;
        line-height: 1.6;
    }

    .info-section-title {
        font-size: 1.25rem;
    }

    .info-card h3 {
        font-size: 1rem;
    }

    .info-card p,
    .feature-item p {
        font-size: 0.85rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .hero::before {
        width: 300px;
        height: 300px;
    }

    .hero::after {
        width: 250px;
        height: 250px;
    }
}

/* ========== REGISTER PAGE STYLES ========== */
.container-form {
    width: 100%;
    max-width: 900px;
    margin: 2rem auto; /* center page container */
    padding: 0 1rem;
}

.card-register {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    animation: slideUp 0.4s ease;
}

.card-register {
    margin: 0 auto;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.header h1 {
    font-size: 2rem;
    color: #1a202c;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.header p {
    color: #718096;
    font-size: 1rem;
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-column.scan-target {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-section-title {
    font-size: 1.05rem;
    color: #2d3748;
    font-weight: 600;
    margin: 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e2e8f0;
    letter-spacing: -0.3px;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: -0.2px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    font-family: inherit;
    background: white;
    color: #2d3748;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #0a9396;
    box-shadow: 0 0 0 3px rgba(10, 147, 150, 0.1);
}

.form-group input::placeholder {
    color: #a0aec0;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.2em;
    padding-right: 2.5rem;
}

.form-group select option {
    color: #1a202c;
    background: white;
}

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-row-2col .form-group {
    margin-bottom: 0;
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    background: #fed7d7;
    border: 1px solid #fc8181;
    color: #c53030;
    grid-column: 1 / -1;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #0a9396, #005f71);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    grid-column: 1 / -1;
    letter-spacing: -0.3px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(10, 147, 150, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

.footer-text {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    color: #718096;
    font-size: 0.9rem;
    grid-column: 1 / -1;
}

.footer-text a {
    color: #0a9396;
    text-decoration: none;
    font-weight: 600;
}

.footer-text a:hover {
    text-decoration: underline;
}

.smart-select-wrapper {
    position: relative;
}

.bank-options-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-top: 0.5rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.bank-options-dropdown.show {
    max-height: 400px;
    opacity: 1;
}

.bank-search-box {
    padding: 0.75rem;
    border-bottom: 1px solid #e2e8f0;
}

.bank-search-input {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: inherit;
}

.bank-options-list {
    max-height: 300px;
    overflow-y: auto;
}

.bank-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.bank-option:hover {
    background: #f8fafc;
}

.bank-logo-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.bank-info-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
}

.bank-short-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #2d3748;
    letter-spacing: -0.2px;
}

.bank-full-name {
    font-size: 0.8rem;
    color: #a0aec0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card-register {
        padding: 2rem;
    }

    .header h1 {
        font-size: 1.5rem;
    }

    .form-row-2col {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .container-form {
        width: 100%;
    }
}
