.abf-form input, .abf-form select {
    border: 1px solid #666;
    border-radius: 10px;
    height: 50px;
    width: 100%;
    padding: 0 15px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: "Source Sans 3", sans-serif;
}
.abf-form .col-md-6, .abf-form .col-md-12 {
    margin-bottom: 20px;    
}
.abf-form .row {
    margin-bottom: 0;
}
.abf-form input:focus, .abf-form select:focus {
    outline: none;
    border-color: #4f83dd;
    box-shadow: 0 0 0 2px rgba(79, 131, 221, 0.2);
}

.abf-form textarea {
    border: 1px solid #666;
    border-radius: 10px;
    height: 100px;
    width: 100%;
    padding: 15px;
    font-size: 14px;
    resize: vertical;
    transition: border-color 0.3s ease;
    font-family: "Source Sans 3", sans-serif;
    font-size: 16px;
}

.abf-form textarea:focus {
    outline: none;
    border-color: #4f83dd;
    box-shadow: 0 0 0 2px rgba(79, 131, 221, 0.2);
}
.abf-form button {
    background-color: #4f83dd;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.abf-form button:hover {
    background-color: #1a61db;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 131, 221, 0.3);
}

.abf-form button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.abf-form p {
    margin-bottom: 25px;
}

#abf-messages {
    margin-bottom: 15px;
}

#abf-messages p {
    padding: 10px 15px;
    border-radius: 5px;
    margin: 0;
    font-weight: 600;
}

.abf-form select {
    background-color: white;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23666" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.btn-default{
    cursor: pointer;
}