/* === FORMS / INPUT FIELDS === */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
textarea,
select {
    background-color: #1A1A1A; /* Dark input background */
    color: #EAEAEA; /* Light gray text */
    border: 1px solid #2E2E2E; /* Subtle border for contrast */
    border-radius: 6px; /* Rounded corners for modern look */
    padding: 0.8em 1em; /* Comfortable padding */
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    width: 100%; /* Full width */
    box-sizing: border-box;
    transition: all 0.2s ease-in-out;
}

/* Focus effect */
input:focus,
textarea:focus,
select:focus {
    border-color: #FFDD00; /* Yellow border on focus */
    outline: none; /* Remove default outline */
    box-shadow: 0 0 5px rgba(255, 221, 0, 0.5); /* subtle glow */
}

/* Form labels */
label {
    color: #EAEAEA;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    margin-bottom: 0.3em;
    display: block;
}

/* Submit / Button inside forms */
input[type="submit"],
button,
.wp-block-button__link {
    font-family: 'Anton', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #121212; /* Dark text */
    background-color: #FFDD00; /* Bright yellow button */
    padding: 0.8em 1.5em;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

input[type="submit"]:hover,
button:hover,
.wp-block-button__link:hover {
    background-color: #FFD633; /* Lighter yellow on hover */
    transform: translateY(-2px); /* Slight lift on hover */
}