/* Custom styles for Ideefase PDF Generator */
body {
    font-family: 'Inter', sans-serif;
}

.form-label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    outline: none;
    transition: box-shadow 0.2s;
}

.form-input:focus, .form-textarea:focus {
    border-color: #da6b32;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

.radio-group {
    display: flex;
    gap: 1rem;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    margin-right: 0.5rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0.375rem;
    transition: background-color 0.3s;
}

.btn-primary {
    background: linear-gradient(to right, #da6b32, #f18950);
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(to right, #da6b32, #f18950);
}

.hidden {
    display: none;
}

.link{
    color: #da6b32;
    text-decoration: none;
}

.form-hint{
    font-size: 0.8rem;
    color: #000000;
    margin-top: 0.25rem;
}