/*
Theme Name: 123 Money Loans V2
Theme URI: http://123moneyloans.com/
Template: engitech
Author: 123 Money Loans
Description: 123 Money Loans v2 Theme
Tags: light,dark,two-columns,right-sidebar,responsive-layout,accessibility-ready
Version: 1.1.1752565077
Updated: 2025-07-15 07:37:57

*/

.hero-section {
    display: flex;
    align-items: center;
    margin: 40px 0;
    min-height: 450px;
}

.hero-section h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #222;
}

.hero-section .right-section {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.display-6 {
    font-size: 2.25rem;
    line-height: 1.2;
    color: #222;
}

.input-focus, 
.select_cash,
input[type="text"], 
input[type="email"], 
select.form-select {
    width: 100%;
    height: 44px;
    padding: 8px 16px;
    font-size: 16px;
    line-height: 1.5;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

select.form-select {
    padding-top: 0;
    padding-bottom: 0;
}

.input-focus:focus, 
.select_cash:focus {
    border-color: #0056b3;
    box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.1);
}

button[type="submit"] {
    display: block;
    width: 100%;
    height: 50px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background-color: #0056b3;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

button[type="submit"]:hover {
    background-color: #004494;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.2);
}

.pulse-animation {
    animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue {
    0% { box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(0, 86, 179, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 86, 179, 0); }
}

.credit-score-notice {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 50px;
    padding: 8px 20px;
    display: inline-block;
}

.credit-score-notice small {
    font-size: 13px;
    font-weight: 700;
    color: #333;
}

.form-footer small {
    font-size: 11px;
    color: #666;
    line-height: 1.6;
}

.form-footer a {
    color: #666;
    text-decoration: none;
    border-bottom: 1px solid #ccc;
}

.form-footer a:hover {
    color: #0056b3;
    border-bottom-color: #0056b3;
}

@media (max-width: 992px) {
    .hero-section { flex-direction: column; text-align: center; }
    .hero-section .left-section { padding: 20px; }
}


.amount-grid-123 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .amount-grid-123 li a {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #252525;
            color: #ffffff;
            text-decoration: none;
            padding: 15px 10px;
            border: 1px solid #444;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .amount-grid-123 li a:hover {
            background: #35d3c9;
            color: #1a1a1a;
            border-color: #35d3c9;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(53, 211, 201, 0.4);
        }
        .featured-link a {
            background: linear-gradient(135deg, #35d3c9 0%, #28a745 100%) !important;
            color: #1a1a1a !important;
            border: none !important;
        }
        @media (max-width: 992px) { .amount-grid-123 { grid-template-columns: repeat(3, 1fr); } }
        @media (max-width: 768px) { .amount-grid-123 { grid-template-columns: repeat(2, 1fr); } }


.state-grid-123 {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            gap: 12px;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .state-grid-123 li a {
            display: block;
            background: #fdfdfd;
            color: #444;
            text-decoration: none;
            padding: 12px 8px;
            border: 1px solid #eaeaea;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            text-align: center;
            transition: all 0.2s ease-in-out;
        }
        .state-grid-123 li a:hover {
            background: #35d3c9;
            color: #fff;
            border-color: #35d3c9;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(53, 211, 201, 0.3);
        }
        @media (max-width: 600px) {
            .state-grid-123 { grid-template-columns: repeat(2, 1fr); }
        }