.elementor-73 .elementor-element.elementor-element-d755dff{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-73 .elementor-element.elementor-element-c5c9268{width:100%;max-width:100%;}/* Start custom CSS for shortcode, class: .elementor-element-c5c9268 */.loan-form {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    max-width: 700px;
    margin: auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}

.loan-form h2 {
    text-align: center;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.loan-form p {
    text-align: center;
    margin-bottom: 20px;
    color: #777;
    font-size: 14px;
}

.loan-form .row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.loan-form .field {
    width: 100%;
}

.loan-form label {
    font-size: 13px;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.loan-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: 0.3s;
}

.loan-form input:focus {
    border-color: #007bff;
    outline: none;
}

.submit-btn {
    text-align: center;
    margin-top: 15px;
}

.submit-btn input {
    background: linear-gradient(45deg, #007bff, #00c6ff);
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s;
}

.submit-btn input:hover {
    opacity: 0.9;
}

/* Mobile responsive */
@media(max-width:600px){
    .loan-form .row {
        flex-direction: column;
    }
}/* End custom CSS */