/* Forms */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="search"],
textarea,
select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    background: white;
    font-size: 15px;
    color: #2d3748;
    transition: all 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #A68A3D;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

