.bottom-text-29 p{
margin-bottom:25px;	
}
.form-container input, .form-container textarea{
outline:1px solid #1d293d;
border-radius:3px;
}
.form-group{
margin:5px 0;	
}
.form-container label{
display:block;	
}
.form-container .loading{
display:none;	
}
.s-sh-{
display:block;
border:1px solid #1d293d;
border-radius:3px;
margin-top:10px;
padding:3px;
cursor:pointer;
}
.form-container {
max-width: 800px;
margin: 0 auto;
background: white;
border-radius: 28px;
padding: 40px;
box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

h2 {
text-align: center;
margin-bottom: 10px;
color: #1e293b;
font-size: 28px;
font-weight: 700;
}

        .subtitle {
            text-align: center;
            color: #64748b;
            margin-bottom: 32px;
            font-size: 14px;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .full-width {
            grid-column: span 2;
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #334155;
            font-size: 14px;
        }

        .required {
            color: #ef4444;
        }

        input:not([type="checkbox"]),
        select,
        textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 14px;
            font-size: 15px;
            transition: all 0.2s ease;
            font-family: inherit;
            background: #ffffff;
        }

        input:focus,
        textarea:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
        }

        textarea {
            resize: vertical;
            min-height: 120px;
        }

        .file-area {
            position: relative;
        }

        .file-label {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background: #f8fafc;
            border: 2px dashed #cbd5e1;
            border-radius: 14px;
            padding: 14px 20px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .file-label:hover {
            background: #f1f5f9;
            border-color: #667eea;
        }

        .file-label span {
            font-size: 14px;
            color: #475569;
        }

        input[type="file"] {
            position: absolute;
            opacity: 0;
            width: 0;
            height: 0;
        }

        .file-info {
            margin-top: 8px;
            font-size: 12px;
            color: #64748b;
            text-align: center;
        }

        .file-info.has-file {
            color: #10b981;
            font-weight: 500;
        }

        .checkbox-group {
            margin: 20px 0;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .checkbox-group input[type="checkbox"] {
            width: 20px;
            height: 20px;
            margin-top: 2px;
            cursor: pointer;
            accent-color: #667eea;
        }

        .checkbox-group label {
            margin: 0;
            font-weight: normal;
            font-size: 14px;
            color: #475569;
            cursor: pointer;
        }

        .checkbox-group a {
            color: #667eea;
            text-decoration: none;
        }

        .checkbox-group a:hover {
            text-decoration: underline;
        }

        button {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            border-radius: 14px;
            color: white;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        button:hover {
            transform: translateY(-2px);
            opacity: 0.95;
        }

        button:disabled {
            opacity: 0.6;
            transform: none;
            cursor: not-allowed;
        }

        .alert {
            padding: 14px 18px;
            border-radius: 14px;
            margin-bottom: 28px;
        }

        .alert-success {
            background: #d1fae5;
            color: #065f46;
            border-left: 4px solid #10b981;
        }

        .alert-error {
            background: #fee2e2;
            color: #991b1b;
            border-left: 4px solid #ef4444;
        }

        .error-text {
            color: #ef4444;
            font-size: 12px;
            margin-top: 5px;
        }

        .loading {
            display: none;
            text-align: center;
            margin-top: 20px;
            color: #667eea;
            font-size: 14px;
            gap: 8px;
            align-items: center;
            justify-content: center;
        }

        .loading.active {
            display: flex;
        }
		.container {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 25px -5px rgba(0,0,0,0.05);
        }
        .header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 24px 30px;
        }
        .header h1 {
            margin: 0;
            font-size: 22px;
            font-weight: 600;
        }
        .content {
            padding: 30px;
        }
        .field {
            margin-bottom: 20px;
            padding: 12px 16px;
            background: #f9fafb;
            border-radius: 12px;
            border-left: 4px solid #667eea;
        }
        .label {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            color: #6b7280;
            margin-bottom: 6px;
        }
        .value {
            font-size: 15px;
            color: #111827;
        }
        .attachment-note {
            margin-top: 24px;
            padding: 12px 16px;
            background: #e0e7ff;
            border-radius: 12px;
            font-size: 14px;
        }


        @media (max-width: 700px) {
            .form-container {
                padding: 25px;
            }
            .form-grid {
                grid-template-columns: 1fr;
                gap: 0;
            }
            .full-width {
                grid-column: span 1;
            }
        }