/* Global button styles */
.t-btn {
    border-radius: 12px !important;
    background-color: #ff5c1a !important;
    color: #ffffff !important;
    text-transform: none !important;
}

/* Hover effect for buttons (darken color) */
.t-btn:hover {
    background-color: #e04e13 !important;
    color: #ffffff !important;
}

/* Form input and textareas unify border radius and color scheme */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
    border-radius: 8px !important;
    border: 1px solid #dcdcdc !important;
    padding: 8px 12px !important;
    font-family: 'Roboto', sans-serif !important;
}

/* unify color for links (use accent color) */
a {
    color: #ff5c1a !important;
}

a:hover {
    color: #e04e13 !important;
}
