/* Add your custom CSS styles here */
.custom-input {
    border-radius: 4px;
    padding: 10px;
    border: 1px solid rgb(0, 0, 0);
    width: 100%;
}

.custom-input:focus {
    outline: none;
    box-shadow: 0 0 6px rgb(0, 124, 219);
}


.custom-input::placeholder {
    color: rgb(236, 236, 236);
}

.custom-input:required::placeholder {
    color: rgb(236, 236, 236); /* Change this to your desired color */
}