/* The access-request form's field styling. Extracted from contact.html's <head> so the site
   can be served under a Content-Security-Policy with no 'unsafe-inline' in style-src. */
.field-input {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    transition: border-color 0.2s ease;
}
.field-input:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.6);
}
.field-input::placeholder {
    color: #6b6b70;
}
.field-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
