input, select, textarea {
    width: 100%;
    padding: 12px;
    margin: 5px 0 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #e77d11;
}

button {
    background: linear-gradient(to right, #e77d11, #a32525);
    color: #fff;
    font-size: 18px;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    display: block;
    margin: 20px auto;
    min-width: 200px;
}
button:hover {
    background: linear-gradient(to right, #a32525, #e77d11);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}