/* Custom input field styling */
.custom-input {
    width: 100%;
    padding: 10px 20px;
    font-size: 16px;
    border: 2px solid #007bff; /* Custom border color */
    border-radius: 30px; /* Rounded corners */
    outline: none;
    transition: all 0.3s ease; /* Smooth transition */
}

.custom-input:focus {
    border-color: #0056b3; /* Border color on focus */
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.5); /* Shadow effect on focus */
}

.custom-input::placeholder {
    color: #999; /* Placeholder text color */
    font-style: italic;
}
