.scr-redemption-form-container {
    max-width: 500px;
    margin: 40px auto;
    padding: 0 20px;
}

.scr-form-wrapper {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    padding: 40px;
    border: 1px solid #e5e7eb;
}

.scr-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.scr-form-header h2 {
    color: #1f2937;
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 700;
}

.scr-form-subtitle {
    color: #6b7280;
    font-size: 16px;
}

.scr-form-group {
    margin-bottom: 25px;
}

.scr-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #374151;
    font-weight: 600;
    font-size: 14px;
}

.scr-form-group input {
    width: 100%;
    padding: 14px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.scr-form-group input:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.scr-form-group input.error {
    border-color: #dc2626;
}

.scr-code-input-group {
    display: flex;
    gap: 10px;
}

.scr-code-input-group input {
    flex: 1;
}

#scr-verify-code {
    background: #002B5C;
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

#scr-verify-code:hover {
    background: #FFD700;
    color: #111111 !important;
}

#scr-verify-code:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

.scr-code-status {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
}

.scr-code-status .success {
    color: #10b981;
    background: #d1fae5;
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.scr-code-status .error {
    color: #dc2626;
    background: #fee2e2;
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.scr-code-status .loading {
    color: #3b82f6;
    background: #dbeafe;
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.scr-plan-details {
    background: #f0f9ff;
    border: 2px solid #bae6fd;
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
}

.scr-plan-details h3 {
    margin: 0 0 10px 0;
    color: #0369a1;
    font-size: 18px;
}

#scr-plan-name {
    font-weight: 700;
    color: #0c4a6e;
}

#scr-submit {
    background: #FFD700;
    color: #111111 !important;
    border: none;
    padding: 5px 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#scr-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

#scr-submit:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.scr-loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.scr-form-message {
    margin-top: 20px;
}

.scr-message {
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 10px;
}

.scr-message-success {
    background: #d1fae5;
    color: #065f46;
    border: 2px solid #a7f3d0;
}

.scr-message-error {
    background: #fee2e2;
    color: #991b1b;
    border: 2px solid #fecaca;
}

.scr-message-loading {
    background: #dbeafe;
    color: #1e40af;
    border: 2px solid #bfdbfe;
}

.password-strength {
    margin-top: 10px;
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.password-strength-meter {
    height: 100%;
    transition: width 0.3s ease;
}

.password-strength.weak .password-strength-meter {
    background: #dc2626;
    width: 33%;
}

.password-strength.medium .password-strength-meter {
    background: #f59e0b;
    width: 66%;
}

.password-strength.strong .password-strength-meter {
    background: #10b981;
    width: 100%;
}

.scr-form-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}

.scr-form-footer a {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 600;
}

.scr-form-footer a:hover {
    text-decoration: underline;
}

.scr-help-text {
    font-size: 13px;
    color: #9ca3af;
    margin-top: 10px;
}

@media (max-width: 600px) {
    .scr-redemption-form-container {
        padding: 0 15px;
    }
    
    .scr-form-wrapper {
        padding: 25px;
    }
    
    .scr-form-header h2 {
        font-size: 24px;
    }
    
    .scr-code-input-group {
        flex-direction: column;
    }
    
    #scr-verify-code {
        width: 100%;
    }
}