

/* Styling form container */
.subscribeForm {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* Styling form inputs and select */
.subscribeForm input[type="text"],
.subscribeForm input[type="email"],
.subscribeForm input[type="tel"],
.subscribeForm input[type="file"],
.subscribeForm input[type="submit"],
.subscribeForm select {
    width: calc(100% - 22px);
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

/* Style placeholder text */
.subscribeForm input::placeholder,
.subscribeForm select::placeholder {
    color: #aaa;
}

/* Styling submit button */
.subscribeForm input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

/* Hover effect for submit button */
.subscribeForm input[type="submit"]:hover {
    background-color: #45a049;
}

/* Styling select dropdown */
.subscribeForm select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 30px;
    background: url('https://cdn.jsdelivr.net/gh/stevenrskelton/remarkable/examples/arrow.png') no-repeat scroll right center transparent;
    background-size: 18px;
}



/* Custom styles for individual form elements */
.subscribeForm #drop {
    /* Specific styles for the experience dropdown */
    /* Add your custom styles here */
}

/* Additional styles for other classes or IDs */
.subscribeForm .change {
    /* Additional styles for elements with the 'change' class */
    /* Add your custom styles here */
}

/* You can add more specific styles for different elements or classes */
