.sra-wrapper { max-width: 700px; margin: 0 auto; }
.sra-form { background: #fff; padding: 30px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.sra-row { display: flex; gap: 20px; margin-bottom: 20px; }
.sra-group { flex: 1; display: flex; flex-direction: column; }
.sra-group label { font-size: 14px; font-weight: 600; color: #1a202c; margin-bottom: 6px; }
.sra-group input { padding: 12px 16px; border: 2px solid #e2e8f0; border-radius: 8px; font-size: 15px; transition: border-color 0.2s; outline: none; }
.sra-group input:focus { border-color: #33cc33; }
.sra-submit { text-align: center; margin-top: 10px; }
.sra-btn { background: #ff0000; color: white; border: none; padding: 16px 40px; font-size: 18px; font-weight: 700; border-radius: 8px; cursor: pointer; transition: background 0.2s; width: 100%; }
.sra-btn:hover { background: #cc0000; }
.sra-btn:disabled { background: #999; cursor: not-allowed; }
.sra-note { text-align: center; font-size: 12px; color: #888; margin-top: 12px; }
.sra-success { background: #f0fdf4; border: 1px solid #33cc33; color: #166534; padding: 16px; border-radius: 8px; margin-bottom: 20px; font-weight: 600; font-size: 16px; }
.sra-error { background: #fef2f2; border: 1px solid #ff0000; color: #991b1b; padding: 16px; border-radius: 8px; margin-bottom: 20px; }
@media (max-width: 600px) { .sra-row { flex-direction: column; } }